0

簡単な質問があります。ユーザーは にボタンを追加できますUIViewNSUserDefaultさまざまなボタンを保存してから、アプリケーションの起動時に(バックグラウンドではなく)それらをリロードするために使用しUIViewます。どうすればよいですか?

    -(void)AddButton:(UIButton*)sender {
         CountButton++;
           if (CountButton< 11) {
            button2 = [UIButton buttonWithType:UIButtonTypeCustom];
            button2.frame = CGRectMake(20, 80, 120, 80);
            UIImage *buttonImage = [UIImage imageNamed:@"image"];
            [button2 setBackgroundImage:buttonImage forState:UIControlStateNormal];
            NSString* buttonTitle = [NSString stringWithFormat:@"Button%d", CountButton];
            [button2 setTitle:buttonTitle forState:UIControlStateNormal];
            NSString *selectorName = [NSString stringWithFormat:@"ButtonAdd%d:", CountButton];

    [button2 addTarget:self action:NSSelectorFromString(selectorName)forControlEvents:UIControlEventTouchUpInside];
}}
4

3 に答える 3