當我寫下面的代碼,我得到了Application tried to push a nil view controller on target
錯誤。如何調試此「應用程序試圖推動一個無視圖控制器的目標」錯誤?
BOOL isboyWithGlass;
isboyWithGlass=TRUE;
NSLog(@"%@",isboyWithGlass);
誰能告訴我如何刪除這個錯誤,而我使用上面的代碼。
當我寫下面的代碼,我得到了Application tried to push a nil view controller on target
錯誤。如何調試此「應用程序試圖推動一個無視圖控制器的目標」錯誤?
BOOL isboyWithGlass;
isboyWithGlass=TRUE;
NSLog(@"%@",isboyWithGlass);
誰能告訴我如何刪除這個錯誤,而我使用上面的代碼。
BOOL打印時它總是把它作爲INT
所以打印出來像
NSLog(@"%d",isboyWithGlass);
它會返回爲1(如果是的話)或0(如果是沒有)
如果你想打印的字符串,然後
NSLog(@"%@", (isboyWithGlass ? @"TRUE" : @"FALSE"));
@ whySoSerious ...謝謝你,它的工作。 – 2012-03-21 10:58:50