好我的問題:訪問編程方式創建的UILabel
我有函數來創建一個標籤:
- (void)crateBall:(NSInteger *)nummer {
UILabel *BallNummer = [[UILabel alloc] initWithFrame:CGRectMake(50, 100, 200, 100)];
BallNummer.text = [NSString stringWithFormat:@"%i", nummer];
[self.view addSubview:BallNummer];
}
現在我想訪問該標籤的其他功能更改文本,框架等。
這些標籤的數量是動態的,所以我不想在.h文件中聲明每個標籤。 (我不平均數量的.text = 123我的意思是在視圖中的標籤數)
謝謝,錯字 – Vladimir 2010-08-09 08:19:46
非常感謝你的工作很好:D – Mario 2010-08-09 08:22:36