You can use UITextView: Try below one.
UITextView *textView=[[UITextView alloc] initWithFrame:CGRectMake(20, 40, 200, 70)]; textView.font=[UIFont systemFontOfSize:18.0]; textView.userInteractionEnabled=YES; textView.backgroundColor=[UIColor whiteColor]; textView.scrollEnabled=YES; textView.delegate = self; [self.view addSubview:textView];
Vjvj source share