Skip to content

Commit 1acbff5

Browse files
committed
Merge branch 'master' of github.com:CEWendel/SWTableViewCell
2 parents af3d482 + eefec3e commit 1acbff5

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,23 +38,23 @@ In your `tableView:cellForRowAtIndexPath:` method you set up the SWTableView cel
3838
NSMutableArray *leftUtilityButtons = [NSMutableArray new];
3939
NSMutableArray *rightUtilityButtons = [NSMutableArray new];
4040
41-
[leftUtilityButtons addUtilityButtonWithColor:
41+
[leftUtilityButtons sw_addUtilityButtonWithColor:
4242
[UIColor colorWithRed:0.07 green:0.75f blue:0.16f alpha:1.0]
4343
icon:[UIImage imageNamed:@"check.png"]];
44-
[leftUtilityButtons addUtilityButtonWithColor:
44+
[leftUtilityButtons sw_addUtilityButtonWithColor:
4545
[UIColor colorWithRed:1.0f green:1.0f blue:0.35f alpha:1.0]
4646
icon:[UIImage imageNamed:@"clock.png"]];
47-
[leftUtilityButtons addUtilityButtonWithColor:
47+
[leftUtilityButtons sw_addUtilityButtonWithColor:
4848
[UIColor colorWithRed:1.0f green:0.231f blue:0.188f alpha:1.0]
4949
icon:[UIImage imageNamed:@"cross.png"]];
50-
[leftUtilityButtons addUtilityButtonWithColor:
50+
[leftUtilityButtons sw_addUtilityButtonWithColor:
5151
[UIColor colorWithRed:0.55f green:0.27f blue:0.07f alpha:1.0]
5252
icon:[UIImage imageNamed:@"list.png"]];
5353
54-
[rightUtilityButtons addUtilityButtonWithColor:
54+
[rightUtilityButtons sw_addUtilityButtonWithColor:
5555
[UIColor colorWithRed:0.78f green:0.78f blue:0.8f alpha:1.0]
5656
title:@"More"];
57-
[rightUtilityButtons addUtilityButtonWithColor:
57+
[rightUtilityButtons sw_addUtilityButtonWithColor:
5858
[UIColor colorWithRed:1.0f green:0.231f blue:0.188 alpha:1.0f]
5959
title:@"Delete"];
6060

0 commit comments

Comments
 (0)