I would like to create a new uitextview
every time when the user click on the same uibutton
.
I've tried to write some codes but I can create one uitextview
only.
Would be glad if there's some sample code that can be provided to help me out.
Thanks in advance.
UITextView *newTextView =[[UITextView alloc]init];
newTextView.frame=CGRectMake(0,0,100,100);
[textView addSubview:newTextView];
newTextView.delegate=self;
[newTextView release];