UITextView 키보드 위에 완료 버튼 만들기
개발/iOS
2017. 7. 25. 15:23
키보드 위에 완료 버튼 붙이기... UITextView *m_pEditText = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, 100, 30)]; m_pEditText.editable = YES; [m_pEditText setUserInteractionEnabled:YES]; [m_pEditText setBackgroundColor:[UIColor whiteColor]]; [m_pEditText setTextColor:[UIColor blackColor]]; [m_pEditText setKeyboardType:UIKeyboardTypeDefault]; // UITextView 키보드에 올릴 Bar 생성. UIToolbar* keyboardToolbar = [..