更新到 Xcode 4.2 后我遇到了麻烦。在我使用以下代码制作自定义导航栏之前,但是当我使用 iPhone 5.0 模拟器时,它会失败,而在 iPhone 4.2 模拟器中它没问题。
我可以知道是什么问题,我该如何解决?
非常感谢
@implementation UINavigationBar (UINavigationBarCustomDraw)
- (void) drawRect:(CGRect)rect {
[self setTintColor:[UIColor colorWithRed:0.4f
green: 0.0f
blue:0.4f
alpha:1]];
if ([self.topItem.title length] > 0 && ![self.topItem.title isEqualToString:@""])
{
[[UIImage imageNamed:@"purple.jpg"] drawInRect:rect];
}
}
@end