我想通知的身體像今天打印是簡的生日NSNotification警報身體問題
的,我現在用的邏輯類似下面
notification.alertBody = [NSString stringWithFormat:@"Today is %@'s Birthday", [_combinedNameArray objectAtIndex:i]];
但在通知那隻能說明這是簡而得名沒有表現出今天是生日
PLZ告訴我什麼,我做錯了什麼?
謝謝
我想通知的身體像今天打印是簡的生日NSNotification警報身體問題
的,我現在用的邏輯類似下面
notification.alertBody = [NSString stringWithFormat:@"Today is %@'s Birthday", [_combinedNameArray objectAtIndex:i]];
但在通知那隻能說明這是簡而得名沒有表現出今天是生日
PLZ告訴我什麼,我做錯了什麼?
謝謝
嘗試:
notification.alertBody = [NSString stringWithFormat:@"Today is %@\'s Birthday", [_combinedNameArray objectAtIndex:i]];
(」字符需要轉義字符)
好吧,讓我試試好友 – user2189388 2013-03-21 05:35:40
不,這不是這種情況 – 2013-03-21 05:39:13
爲什麼撇號需要進行轉義? – rmaddy 2013-03-21 05:43:40
你這個代碼看起來很完美。 – 2013-03-21 05:39:57
你能在這個今天顯示更多代碼 – 2013-03-21 05:46:26
今天是%@ \的生日,它工作完美:)是它的工作,但你認爲如果是的話,如果是的話,還是有什麼錯誤然後PLZ建議:) – user2189388 2013-03-21 05:48:56