how to add a UITableView into UIAlertView in iOS 7
问题 did some googling around saw that subview is no longer supported in iOS 7. Some ppl recommend creating custom view, but i am not sure how can i do that. Here is my code, can anyone point me in the correct direction? -(IBAction)click_select_fruit_type { select_dialog = [[[UIAlertView alloc] init] retain]; [select_dialog setDelegate:self]; [select_dialog setTitle:@"Fruit Type"]; [select_dialog setMessage:@"\n\n\n\n"]; [select_dialog addButtonWithTitle:@"Cancel"]; idType_table = [[UITableView