objective c - Xcode UITableViewController and MainViewController -
i have problem app. have storyboard, have class mainviewcontroller. added uitableview, after create class domainlistcontroller < uitableviewcontroller. dont know how assign uitableview domainlistcontroller. can help me?
in new project, there 1 viewcontroller, add together tableview in it.
now add together 1 tableviewcell in tableview.
then add together uitableviewdatasource , uitableviewdelegate in .h after viewcontroller name
yourviewcontroller:uiviewcontroller**<uitableviewdatasource, uitableviewdelegate>**
now in viewdidload
yourtableviewname.datasource = self; yourtableviewname.delegate = self;
now have implements 3 delegates methods of tableview.
whenever want update info
[yourtableviewname reloaddata];
objective-c xcode uitableview
No comments:
Post a Comment