gpt4 book ai didi

objective-c - 将 64 位应用程序安全地转换为 32/64 位应用程序

转载 作者:行者123 更新时间:2023-12-03 17:40:57 25 4
gpt4 key购买 nike

我制作了一个启用了 ARC 的应用程序(我的第一个),进行分发(不是通过应用程序商店),并开始收到报告称它在某些 Mac 上崩溃了。在他们的帮助下尝试和搜索后,我们发现问题是他们有一个 32 位处理器。所以我禁用了 ARC,将build设置为 x86_64 并收到大量错误消息。

所有这些都已排序,现在我留下了一堆警告(黄色的)。我担心我会忘记一些事情并弄乱内存。您认为从 64 位应用程序升级到 32/64 位应用程序而不忘记某些内容的最佳方法是什么?如果有很多 Mac 与 ARC 不兼容,为什么首先使用 ARC?

谢谢!

-----更新------

根据要求:

 Update to recommended settings

Property 'delegate' requires method 'delegate' to be defined - use @synthesize, @dynamic or provide a method implementation in this class implementation

Property 'delegate' requires method 'setDelegate:' to be defined - use @synthesize, @dynamic or provide a method implementation in this class implementation

'__bridge' casts have no effect when not using ARC

Variable 'loc_tip' is used uninitialized whenever 'if' condition is false

Variable 'loc_tip' is used uninitialized whenever '&&' condition is false

Conflicting parameter types in implementation of 'tableView:toolTipForCell:rect:tableColumn:row:mouseLocation:': 'NSInteger' (aka 'int') vs 'long'

最佳答案

前方有汹涌的水流

all of them have been sorted, and now i am left with a load of warnings (yellow ones).

调高警告级别。全部修复。

i am worried that i forget something and make a mess with the memory.

what is in your opinion the best way to get froma 64 bit app to a 32/64 bit app without forgetting something?

考虑到这个问题,担心是很自然的。

一个快速修复方法是使用启用了垃圾收集的 ObjC。这样做并相信它无需额外更改即可工作是一个错误(请阅读:您应该保留大量时间用于测试和错误查找)。

如果您确实希望在 32 位和 64 位上都得到良好的支持,则另一种方法是使用 MRC ——但在这种情况下您应该只致力于 32 位和 64 位的 MRC(无 ARC)。当然,这将需要大量的审查、修复、手动测试和泄漏测试(除非您的程序很小)。在我看来,对于具有良好长期支持和高质量标准的应用程序来说,这是更好的解决方案。

why is ARC used in the first place if there are many macs that aren't compatible with it?

确实没有很多 Mac 需要 32 位。如果您今天发布 1.0,您应该考虑仅将其设为 64 位。

如果有要求的话,从开发之初就应该支持和测试 32 位 - ARC 选项或 32 位都会很早就被淘汰。这种疏忽会在测试和开发中溜走,这似乎很奇怪。

Update to recommended settings

点击“验证设置”,检查并执行更改。

Property 'delegate' requires method 'delegate' to be defined - use @synthesize, @dynamic or provide a method implementation in this class implementation

回显警告消息

Property 'delegate' requires method 'setDelegate:' to be defined - use @synthesize, @dynamic or provide a method implementation in this class implementation

回显警告消息

'__bridge' casts have no effect when not using ARC

在这种情况下你只需使用 c 风格的强制转换

Variable 'loc_tip' is used uninitialized whenever 'if' condition is false

ARC 会为您做到这一点。只是做 ARC 会做的事情:

NSSomething * loc_tip = nil;

Variable 'loc_tip' is used uninitialized whenever '&&' condition is false

回显之前的回复

Conflicting parameter types in implementation of 'tableView:toolTipForCell:rect:tableColumn:row:mouseLocation:': 'NSInteger' (aka 'int') vs 'long'

选择器的声明不匹配 - 从 header (NSTableView.h) 复制声明,并查看该更改(参数类型)是否需要对您的实现进行任何其他更改。

关于objective-c - 将 64 位应用程序安全地转换为 32/64 位应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15270753/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com