それが問題です。webServer からのラベルの量に応じて、xCode で動的な画面を描画したいのですが、そのようなものです...
for (int i = 0; i< [webserver.arraylabels count]; i++){
UILabel *label[i];
label[i] = [functions createLabel:[[webserver.arraylabels objectAtIndex:i] textLabel]
locationX:[webserver.arraylabels objectAtIndex:i] locationX]
locationY:[webserver.arraylabels objectAtIndex:i] locationY]
heightControl:[webserver.arraylabels objectAtIndex:i] heightControl]
widthControl:[webserver.arraylabels objectAtIndex:i] widthControl]
adjustmentControl:UIViewAutoresizingFlexibleRightMargin];
[cell addSubview:label[i]];
}
[functions createLabel...] は、UILabel オブジェクト タイプを返す関数です...
これを実行すると、ラベル名の [i] が原因でエラーが発生します。どうすればよいですか??
ご支援いただきありがとうございます