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:
arichornlover 2024-04-15 18:35:38 -05:00 committed by GitHub
parent fe5cae02f4
commit 990538c505
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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) {