Created
May 24, 2014 06:31
-
-
Save peerasak-u/8ce40fb0efbd98a86887 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath | |
| { | |
| UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath]; | |
| [cell.imageView setImage:[UIImage imageNamed:@"radiobutton-unchecked"]]; | |
| [cell.imageView setHighlightedImage:[UIImage imageNamed:@"radiobutton-checked"]]; | |
| [cell.label setText:_dataArray[indexPath.row][@"text"]]; | |
| return cell; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment