what... care to explain a bit more? not making any sence
I still have no clue what you're talking about?
You want to add a UITextView when pressing a button...?
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(0,0,100,100];
[textView setText:@"TEST TEXT"];
[self.view addSubview:textView];
Hi all, I need to insert several UITextView but pressing a button insert.
The insertion should be when the program is running.
Thanks!
Connect a IBAction to a button then do..
Code:UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(0,0,100,100]; [textView setText:@"TEST TEXT"]; [self.view addSubview:textView];
I typed this out of my head, so check for code completion in the code.
Yes but if I want to create multiple identical objects, How do I for set diferent names?