Increase height for App Icons
App Icon in each row was too small and was overlapping the image. This is a fix for it.
This commit is contained in:
parent
fe5cae02f4
commit
990538c505
1 changed files with 4 additions and 0 deletions
|
|
@ -49,6 +49,10 @@
|
|||
return self.appIcons.count + 1;
|
||||
}
|
||||
|
||||
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
|
||||
return 60.0;
|
||||
}
|
||||
|
||||
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
|
||||
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
|
||||
if (!cell) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue