You can change the return key using the property returnKeyType
UITextView *textview = [[UITextView alloc] initWithFrame:CGRectMake(0.f, 0.f, 120.f, 40.f)];
textview.returnKeyType = UIReturnKeyDone;
[self.view addSubview:textview];
Regards,
KL94
source
share