我幾乎每次調用這個函數在我viewDidLoad
UIRefreshControl警告:CUICatalog:無效的資產名稱或無效的比例因子
- (void)addRefreshControl {
refreshControl = [[UIRefreshControl alloc] init];
[refreshControl setAttributedTitle:[[NSAttributedString alloc] initWithString:NSLocalizedString(@"Pull to refresh", nil)]];
[refreshControl addTarget:self
action:@selector(refreshView)
forControlEvents:UIControlEventValueChanged];
[self setRefreshControl:refreshControl];
}
我拉來刷新我就要警告在調試這個消息CUICatalog: Invalid asset name supplied: (null), or invalid scale factor: 2.000000
這不是打擾我的應用程序,但是,我想知道這個消息來自哪裏並避免它。
是的,我有一個配對的@ 2x圖像,是的圖像的名稱是相同的。經過長時間的搜索+試驗和錯誤,我發現你實際上需要NSString它的圖像的名字出來的字典,就像我的。謝謝! – Martijn