I want to use a UITableView as a single selection in my own ViewController, now I can display it but fail to fill the cell or get wrong on how to fill the cell’s textlabel. Any suggestion? …
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Implement the protocols for
UITableViewDataSource,UITableViewDelegatein.hor.mthen connect the tableview with the first responder-datasourceand-delegatein interface builder and support the protocol required classes in your.m.For datasource it is:
cellForRowAtIndexPathandnumbersOfRowsInSection.Set your
cell.textlabel.textin yourcellForRowAtIndexPathmethod.