Skip to content

Commit 52a2834

Browse files
committed
increase # of rows in tableview for demo purposes
1 parent 4372203 commit 52a2834

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Example/FlatUIKitExample/TableViewController.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ - (void)viewDidLoad
4444

4545
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
4646
{
47-
return 2;
47+
return 7;
4848
}
4949

5050
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
5151
{
52-
if (section == 0)
53-
return 2;
52+
if (section % 2)
53+
return 3;
5454
else
5555
return 1;
5656
}

0 commit comments

Comments
 (0)