5

做一些调试,我打印了一个 NSDictionary 变量的描述,它给出了这个:

(NSDictionary *) labelAttrs = 0x00000001

有人可以澄清这是为什么1吗?

我会理解nil或对象指针,但为什么1呢?

更新

编码:

NSDictionary *labelAttrs = @{NSForegroundColorAttributeName:[UIColor darkGrayColor]};

它在 iOS5 而不是 iOS6 上运行时崩溃,但这是:

新的对象字面量是否向后兼容 iOS 5?

似乎说您可以在 iOS5 中使用新的文字(只要您针对 iOS6 构建并使用 Xcode >= 4.5 并使用最新的 LLVM 进行编译 - 例如参见屏幕抓取)。而且,根据 Apple 的说法,我应该可以使用它们:https ://developer.apple.com/library/ios/#releasenotes/ObjectiveC/ObjCAvailabilityIndex/index.html

在此处输入图像描述

这是它之前在 Xcode 中的样子:

在此处输入图像描述

然后当我跨过时:

在此处输入图像描述

注意:这给了我同样的崩溃:

NSDictionary *labelAttrs = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor darkGrayColor], NSForegroundColorAttributeName, [UIFont fontWithName:CUSTOMFONT size:size], NSFontAttributeName, [NSNumber numberWithInt:0], NSStrokeWidthAttributeName, nil];

删除它(以及以下 2 行代码)意味着应用程序运行时不会崩溃。但显然没有属性字符串。

更新:已解决。属性字符串在 iOS5 上不可用(至少对于 UILabel 的):NSAttributedString 在 iOS 6 之前可用吗?

4

3 回答 3

3

问题是NSAttributedString UIKit 添加直到 iOS 6 才可用。这意味着常量 NSForegroundColorAttributeName 等没有定义。所以字典的创建在试图引用这些时失败了。

(调试这个的方法——不检查错误的 iOS 版本 (;) 的引用)——是分解语句:

UIColor* value1 = [UIColor darkGrayColor];
NSString* key1 = NSForegroundColorAttributeName;
UIFont* value2 = [UIFont fontWithName:CUSTOMFONT size:size];
NString* key2 = NSFontAttributeName;
NSNumber* value3 = [NSNumber numberWithInt:0];
NSString* key3 = NSStrokeWidthAttributeName;

NSDictionary *labelAttrs0 = [NSDictionary dictionaryWithObjectsAndKeys:nil];
NSDictionary *labelAttrs1 = [NSDictionary dictionaryWithObjectsAndKeys:value1, key1, nil];
NSDictionary *labelAttrs2 = [NSDictionary dictionaryWithObjectsAndKeys:value2, key2, nil];
NSDictionary *labelAttrs3 = [NSDictionary dictionaryWithObjectsAndKeys:value3, key3, nil];

然后看看什么失败了。在这种情况下,您可能会在分配 labelAttrs1 时失败。如果你然后是 NSLog value1 和 key1 你会在 key1 上得到一个错误。)

于 2013-03-19T18:33:02.270 回答
0

0x00000001 表示内存地址无效。你使用的是什么版本的 Xcode?您可能需要从 lldb 切换到 gdb

于 2013-03-19T16:26:12.493 回答
0

当我单步执行这样的代码时,我在 lldb 中看到了 0x00000001:

labelAttrs = [self someMethod];

如果您在评估 -someMethod 之前打印 labelAttrs,那么它将被分配给 0x00000001。

于 2013-03-19T16:34:54.390 回答