As title
Welcome any comment
Thanks
interdev
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.
I’m assuming you mean the event?
In the simplest Table Views the data is loaded whether it be from an array or other object in the controllers
viewDidLoadmethod.Then
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)sectionis implemented which just returns the count of the data source object so the table view knows how many objects it will draw.
And finally
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPathis implemented to describe how the cells in the table look by returning a table view cell.