0001-Fix-iOS-7-appearance-issue.patch 1.1 KB

12345678910111213141516171819202122232425262728
  1. From d9a4ab2bea0bbc0d9fb81b4986107cdd0688f200 Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= <fkuehne@videolan.org>
  3. Date: Thu, 9 Jan 2014 22:36:44 +0100
  4. Subject: [PATCH] Fix iOS 7 appearance issue
  5. ---
  6. InAppSettingsKit/Controllers/IASKAppSettingsViewController.m | 4 ++--
  7. 1 file changed, 2 insertions(+), 2 deletions(-)
  8. diff --git a/InAppSettingsKit/Controllers/IASKAppSettingsViewController.m b/InAppSettingsKit/Controllers/IASKAppSettingsViewController.m
  9. index e2156f9..648fc30 100644
  10. --- a/InAppSettingsKit/Controllers/IASKAppSettingsViewController.m
  11. +++ b/InAppSettingsKit/Controllers/IASKAppSettingsViewController.m
  12. @@ -458,8 +458,8 @@ CGRect IASKCGRectSwap(CGRect rect);
  13. } else {
  14. cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
  15. }
  16. - cell.textLabel.minimumFontSize = kIASKMinimumFontSize;
  17. - cell.detailTextLabel.minimumFontSize = kIASKMinimumFontSize;
  18. + cell.textLabel.minimumScaleFactor = 0.5f;
  19. + cell.detailTextLabel.minimumScaleFactor = 0.5f;
  20. return cell;
  21. }
  22. --
  23. 1.8.3.4 (Apple Git-47)