0

UILabel コントロールをコードから (プログラムによって) 動的にアプリケーションに追加したいのですが、助けてください

4

1 に答える 1

4

ビュー コントローラ メソッドの 1 つで、次の方法で実行できます。

UILabel *myLabel = [[UILabel alloc] initWithFrame:CGRectMake(...)]; // Create UILabel
myLabel.tag = someTag; // set label's tag to access this label in future via [view viewWithTag:someTag];
... // set label's properties like text, background and text color, font size etc (e.g. myLabel.textColor = [UIColor redColor];)
[view addSubView:myLabel]; // add label to your view
[myLabel release]; // view owns the label now so we can release it
于 2009-10-21T06:59:09.993 に答える