0

我怎样才能在一个NSMutableArray 上使用UITextField?我有一个按钮,点击后会显示UITextField. 我希望每次按下按钮UITextField时都会显示一个新按钮。但我不知道如何使用数组。

4

1 回答 1

0

声明一个int counter;in .h 文件。

然后,在 btn Press 事件中

- (IBAction) btnPressed : (id) sender
{
    if(counter < [yourMutableArray count])
    {
        UITextField* myTextFIeld// initializing and all other stuff you want

        //at the end
        counter++;
    }
}    

This might work, although being more descriptive would help!

于 2012-10-24T06:06:05.480 回答