Created
April 18, 2017 16:31
-
-
Save thiagolioy/92b8df2cdc4c2fa4c80efc723819c69d to your computer and use it in GitHub Desktop.
Code for presentation, what not to do inside a cell for row
This file contains 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 { | |
switch (indexPath.section) { | |
case 1: | |
// | |
break; | |
case 2: | |
// | |
break; | |
case ...: | |
// | |
break; | |
default: | |
break; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment