博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

IOS-细节错误

Posted on 2016-10-28 00:24  JodyChen  阅读(175)  评论(0编辑  收藏  举报

当页面显示时一直奔溃,错误提示-[UICachedDeviceWhiteColor pointSize]: unrecognized selector sent to instance

原因是设置导航字体颜色时[self.navigationController.navigationBar setTitleTextAttributes:@{NSFontAttributeName:[UIColor whiteColor]}];搞错了写成了设置字号了,正确应该是[self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];还是在stackoverflow上面找到了解释。