diff --git a/TrollStore/TSAppTableViewController.m b/TrollStore/TSAppTableViewController.m index 2c03a7d6..9bad0642 100644 --- a/TrollStore/TSAppTableViewController.m +++ b/TrollStore/TSAppTableViewController.m @@ -104,7 +104,8 @@ - (void)loadView [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadTable) name:@"ApplicationsChanged" object:nil]; } -- (void)viewDidLoad { +- (void)viewDidLoad +{ [super viewDidLoad]; self.tableView.allowsMultipleSelectionDuringEditing = NO; @@ -340,11 +341,13 @@ - (void)deselectRow #pragma mark - Table view data source -- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { +- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView +{ return 1; } -- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { +- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section +{ return _cachedAppInfos.count; } @@ -353,7 +356,8 @@ - (void)traitCollectionDidChange:(UITraitCollection *)previousTraitCollection [self reloadTable]; } -- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { +- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath +{ UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ApplicationCell"]; if(!cell) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"ApplicationCell"]; @@ -412,7 +416,8 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N return cell; } -- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { +- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath +{ return 80.0f; }