Вы можете изменить ключ возврата с помощью свойства returnKeyType
UITextView *textview = [[UITextView alloc] initWithFrame:CGRectMake(0.f, 0.f, 120.f, 40.f)];
textview.returnKeyType = UIReturnKeyDone;
[self.view addSubview:textview];
С уважением,
KL94