我是objective-c的noob,我有一個問題。如何通過標記獲得uiview中的某個子視圖
我有我添加到一個UIView的與此代碼一個的UILabel對象:
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0,10,self.view.frame.size.width-15-70, 30)];
label.tag = 1;
label.font = [PublicObject fontTexts:17];
label.textAlignment = NSTextAlignmentRight;
label.textColor = [UIColor whiteColor];
[cell setBackgroundColor:[UIColor clearColor]];
UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 50)];
view.backgroundColor = [PublicObject colorWithHexString:@"cd4110"];
label.text = [filterData objectAtIndex:indexPath.row];
view addSubview:label];
現在我想在我看來,讓一個子視圖,其中該子視圖具有標籤= 1,並將其保存在另一個對象像這樣:
UILabel *tagLabel;
tagLabel = //I want get one subview in view where tag = 1
請指導我一下。
首先,可以有很多子視圖與一個標籤。所以正確的問題是「如何通過標籤從uiview獲取子視圖」。 – nicael