I have storyboard and implement master detail application app ,when i assign manuel class to a tableviewcontroller the objects inside it does not showed and i only get blank table ,please help.
I have storyboard and implement master detail application app ,when i assign manuel class
Share
Well of course it’s blank, you’re not giving the table view any data to work with. You need to implement cellForRowAtIndexPath and configure each cell there.
A sample implementation would be:
You should read the table view programming guide.