我希望只要用户点击UITextView
, set_time_limit(0);
while(true){
try{
$this->out(mysql_ping());
$companies = $this->findCompanies();
$companies = $this->reduceCompanies($companies, $rules);
$this->processCompanies($companies);
}catch (\Exception $e){
Log::write('debug', $e->getMessage());
$this->out($e->getMessage());
}
sleep(3);
}
中的文字就会发生变化。
我怎么能以编程方式做到这一点。
答案 0 :(得分:0)
您需要使用UITextViewDelegate。
在这种方法中:
- (void)textViewDidBeginEditing:(UITextView *)textView
{
textView.text = @"Your text";
}
答案 1 :(得分:0)
在Swift中你可以使用:
func textFieldDidBeginEditing(_ textField: UITextField)
{
textField.text = "Some text";
}
请检查以下链接: