summaryrefslogtreecommitdiff
path: root/Juick/RevealPanelViewController.m
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/RevealPanelViewController.m')
-rw-r--r--Juick/RevealPanelViewController.m18
1 files changed, 11 insertions, 7 deletions
diff --git a/Juick/RevealPanelViewController.m b/Juick/RevealPanelViewController.m
index ec575a0..ecac5df 100644
--- a/Juick/RevealPanelViewController.m
+++ b/Juick/RevealPanelViewController.m
@@ -59,21 +59,25 @@
UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
NSInteger row = indexPath.row;
if (cell == nil) {
- cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
+ cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:cellIdentifier];
[cell setBackgroundColor:[ColorsAndButtons navbarBackground]];
+ cell.textLabel.font = [UIFont fontWithName:kFontAwesomeFamilyName size:20.f];
cell.textLabel.textColor = [ColorsAndButtons navbarFont];
+ cell.detailTextLabel.textColor = [ColorsAndButtons navbarFont];
}
if (row == 0) {
- cell.textLabel.text = @"My feed";
- [cell.imageView setImage:[ColorsAndButtons homeImage]];
+ cell.detailTextLabel.text = @"My feed";
+ cell.textLabel.text = [NSString fontAwesomeIconStringForEnum:FAIconHome];
} else if (row == 1) {
- cell.textLabel.text = @"Popular";
+ cell.detailTextLabel.text = @"Popular";
+ cell.textLabel.text = [NSString fontAwesomeIconStringForEnum:FAIconComments];
} else if (row == 2) {
- cell.textLabel.text = @"Discover";
- [cell.imageView setImage:[ColorsAndButtons discoverImage]];
+ cell.detailTextLabel.text = @"Discover";
+ cell.textLabel.text = [NSString fontAwesomeIconStringForEnum:FAIconSearch];
} else if (row == 3) {
- cell.textLabel.text = @"Images";
+ cell.detailTextLabel.text = @"Images";
+ cell.textLabel.text = [NSString fontAwesomeIconStringForEnum:FAIconPicture];
}
return cell;
}