Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. - (void)viewDidLoad { //<-- BÖRJAN AV VIEWDIDLOAD
  2. [super viewDidLoad];
  3.  
  4. _sections = [[NSMutableArray alloc] init];
  5.  
  6. //Adding two sections
  7. [_sections addObject:@"Pågående"];
  8. [_sections addObject:@"Klara"];
  9.  
  10. //Delegate and datasource
  11. _tableView.delegate = self;
  12. _tableView.dataSource = self;
  13.  
  14. } //<--- SLUTET AV VIEWDIDLOAD
  15.  
  16. -(void)viewDidAppear:(BOOL)animated{
  17. //Retrieving data from NSUserDefaults
  18. [self retrieveUserDefaults];
  19.  
  20. //Reloading tableview data
  21. [_tableView reloadData];
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement