我想uitextview
在用户每次点击时创建一个新的uibutton
。
我试过写一些代码,但我只能创建一个uitextview
。如果可以提供一些示例代码来帮助我,我会很高兴。
提前致谢。
UITextView *newTextView =[[UITextView alloc]init];
newTextView.frame=CGRectMake(0,0,100,100);
[textView addSubview:newTextView];
newTextView.delegate=self;
[newTextView release];