1

我正在使用一个库(SGInfoAlert),它使用不推荐使用的代码drawInRect:r withFont:。我尝试更改一些代码以在 iOS 7 中修复它,但文本没有显示。任何人都知道为什么会这样?

// Changed this
//[info_ drawInRect:r withFont:[UIFont systemFontOfSize:kSGInfoAlert_fontSize]];

// To this
NSDictionary *textAttributes = @{NSFontAttributeName: [UIFont systemFontOfSize:kSGInfoAlert_fontSize]};

[info_ drawInRect:r withAttributes:textAttributes];

这是 git 存储库https://github.com/sagiwei/SGInfoAlert

4

1 回答 1

8

好的。我找到了解决办法。

// iOS 7 fix
UIFont* font = [UIFont preferredFontForTextStyle:UIFontTextStyleHeadline];

NSDictionary *attrs = @{ NSForegroundColorAttributeName : [UIColor whiteColor],
                         NSFontAttributeName : font,
                         NSTextEffectAttributeName : NSTextEffectLetterpressStyle};


[info_ drawInRect:r withAttributes:attrs];
于 2014-02-13T07:44:37.907 回答