我在项目中执行一个简单的任务:单击一个按钮时,我想打开和关闭文本视图。单击按钮时如何打开和关闭文本视图?
最佳答案
然后你用
-(IBAction)button_clicked:(UIButton *)button
{
textView.text = @"Your text";
[NSTimer scheduledTimerWithTimeInterval:60.0
target:self
selector:@selector(clearText)
userInfo:nil
repeats:NO];
}
after 60 secs clearText method will be called
-(void)clearText
{
textView.text = @"";
//or
textView = nil ;
}
希望这能解决您的目的。