我是ios新手。我有一個viewController,那裏有一個通知觀察者。 例如UILabel無法更新標籤文本
-(void) myNotificationObFn:(Notification *)noti
{
/* Here i am trying to change the text of UILabel, which is not working.
ie:
NSString *ns = [NSString stringWithFormat:@"%d", 10];
mylabel.text = ns;
*/
}
我該如何解決這個問題?
該方法甚至被稱爲? – CodaFi
CodaFi,對不起。我試着分配新的NSString,並試圖分配。是的,這個函數被調用。 – Whoami
關於文本字段,它是否爲零? – CodaFi