Notes about something I did not know before.
// .hファイル @property (weak, nonatomic) IBOutlet UILabel *text; // .mファイル UILabel *label = [[UILabel alloc]init]; label.frame = CGRectMake(100, 100, 50, 20); label.text = @"sample Label"; [self.view addSubview:label]; self.text = label;
こうすれ楽勝だ
No comments:
Post a Comment