我想换UIBarButtonItem
的title
。
但是这段代码不起作用。
- (void)viewDidLoad {
...
[self smay];
}
- (void)smay {
...
AppDelegate *apd = (AppDelegate*)[[UIApplication sharedApplication]delegate];
NSString *SmayUse = [NSString stringWithFormat:@"%d月%d日",
apd.newyear,apd.newmonth];
[_smay setTitle:SmayUse]
}
我不知道如何解决这个问题。
请告诉我解决这个问题的方法。