I have a UIView called tableContainer, and I am adding a UITableView from the class WidgetTable as a subview of tableContainer, but although it adds successfully, the tableview won't scroll. How can I make it scroll?

 WidgetTable *widTable = [[WidgetTable alloc] initWithNibName:@"WidgetTable" bundle:nil];


    //ADD WIDGET TABLE TO SUBVIEW
    [tableContainer addSubview:widTable.view];
    [tableContainer setFrame:CGRectMake(0, 77, 320, 460)];
link|improve this question

43% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.