我被困在一个简单的任务上,我的 uiviewcontroller 的界面文件上有 uilabel。我想通过一些方法更新该标签。它不会更新标签。
.h
UIViewController
{
UILabel *pictureNameLabel;
}
@property (nonatomic, strong) IBOutlet UILabel *pictureNameLabel;
.m
@synthesize pictureNameLabel=_pictureNameLabel;
- (void)viewDidLoad
{
_pictureNameLabel = [[UILabel alloc] init];
_pictureNameLabel.textColor=[UIColor blackColor];
_pictureNameLabel.text=@"Try";
}
我该如何解决这个问题?