alertview

How to add a UITableView inside the UIAlertView in iPhone?

烈酒焚心 提交于 2019-12-28 06:34:18
问题 I want to add the UITableView inside the alert view. I have tried to add a table view as a sub view of alert view, it's not working. Can you give me some code or sample link for that? How can I do that? 回答1: Try any one of these pages : http://zpasternack.blogspot.com/2010/10/stupid-uialertview-tricks-part-deux.html https://github.com/blommegard/SBTableAlert 回答2: Its working in my case UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"title" message:@"click for submission \n\n\n\n

Usernotes in ios

筅森魡賤 提交于 2019-12-22 14:03:28
问题 I want to create a user note form in my application,currently am using one textview inside a view its looking bad !! is there any other control suits for this purpose? Main aim is when user click the button a small textview will appear they can add comments there and save it into plist. I want something like this(check the image) i want that kind of usernotes (its my image) please give me some advices and helps to develop this.. 回答1: Using UIAlertView with UITextView can be useful for you.

How to add a UITableView inside the UIAlertView in iPhone?

℡╲_俬逩灬. 提交于 2019-11-28 00:12:58
I want to add the UITableView inside the alert view. I have tried to add a table view as a sub view of alert view, it's not working. Can you give me some code or sample link for that? How can I do that? Karthikeyan Try any one of these pages : http://zpasternack.blogspot.com/2010/10/stupid-uialertview-tricks-part-deux.html https://github.com/blommegard/SBTableAlert Its working in my case UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"title" message:@"click for submission \n\n\n\n "delegate:self cancelButtonTitle:@"click for submission" otherButtonTitles:nil]; table = [[UITableView