Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NSMutableArray を で使用するにはどうすればよいUITextFieldですか? クリックすると が表示されるボタンがありますUITextField。ボタンを押すたびに新しいUITextFieldものが表示されるようにしたい。しかし、配列の使い方がわかりません。
NSMutableArray
UITextField
int counter;in .h ファイルを宣言します。
int counter;
次に、btnプレスイベントで
- (IBAction) btnPressed : (id) sender { if(counter < [yourMutableArray count]) { UITextField* myTextFIeld// initializing and all other stuff you want //at the end counter++; } }
これは機能する可能性がありますが、より説明的であると役立ちます!