diff --git a/Sources/AppIconOptionsController.m b/Sources/AppIconOptionsController.m index 8bfc206..a7d8339 100644 --- a/Sources/AppIconOptionsController.m +++ b/Sources/AppIconOptionsController.m @@ -73,7 +73,9 @@ cell.imageView.image = iconImage; cell.imageView.layer.cornerRadius = 10.0; cell.imageView.clipsToBounds = YES; - + cell.imageView.frame = CGRectMake(10, 10, 40, 40); + cell.textLabel.frame = CGRectMake(60, 10, self.view.frame.size.width - 70, 40); + if (indexPath.row == self.selectedIconIndex) { cell.accessoryType = UITableViewCellAccessoryCheckmark; } else {