@@ -1027,7 +1027,7 @@ - (void)showMore {
10271027 self.indexView.hidden = YES;
10281028 button6.hidden = YES;
10291029 button7.hidden = YES;
1030- [Utilities alphaView: noFoundView AnimDuration: 0.2 Alpha: 0.0 ];
1030+ [Utilities alphaView:noFoundLabel AnimDuration:0.2 Alpha:0.0];
10311031 [activityIndicatorView startAnimating];
10321032 NSArray *buttonsIB = @[button1, button2, button3, button4, button5];
10331033 if (chosenTab < buttonsIB.count) {
@@ -4738,7 +4738,7 @@ - (void)retrieveData:(NSString*)methodToCall parameters:(NSDictionary*)parameter
47384738 return;
47394739 }
47404740
4741- [Utilities alphaView: noFoundView AnimDuration: 0.2 Alpha: 0.0 ];
4741+ [Utilities alphaView:noFoundLabel AnimDuration:0.2 Alpha:0.0];
47424742 elapsedTime = 0;
47434743 startTime = [NSDate timeIntervalSinceReferenceDate];
47444744 countExecutionTime = [NSTimer scheduledTimerWithTimeInterval:WARNING_TIMEOUT target:self selector:@selector(checkExecutionTime) userInfo:nil repeats:YES];
@@ -4962,7 +4962,7 @@ - (void)saveAndShowResultsRefresh:(BOOL)forceRefresh params:(NSMutableDictionary
49624962}
49634963
49644964- (void)animateNoResultsFound {
4965- [Utilities alphaView: noFoundView AnimDuration: 0.2 Alpha: 1.0 ];
4965+ [Utilities alphaView:noFoundLabel AnimDuration:0.2 Alpha:1.0];
49664966 [activityIndicatorView stopAnimating];
49674967 [activeLayoutView.pullToRefreshView stopAnimating];
49684968 [self setGridListButtonImage:enableCollectionView];
@@ -5298,10 +5298,10 @@ - (void)displayData {
52985298 [self setFilternameLabel:labelText];
52995299
53005300 if (!self.richResults.count) {
5301- [Utilities alphaView: noFoundView AnimDuration: 0.2 Alpha: 1.0 ];
5301+ [Utilities alphaView:noFoundLabel AnimDuration:0.2 Alpha:1.0];
53025302 }
53035303 else {
5304- [Utilities alphaView: noFoundView AnimDuration: 0.2 Alpha: 0.0 ];
5304+ [Utilities alphaView:noFoundLabel AnimDuration:0.2 Alpha:0.0];
53055305 }
53065306 NSDictionary *itemSizes = parameters[@"itemSizes"];
53075307 if (IS_IPHONE) {
@@ -5794,7 +5794,9 @@ - (void)viewDidLoad {
57945794 epgCachePath = AppDelegate.instance.epgCachePath;
57955795 NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
57965796 hiddenLabel = [userDefaults boolForKey:@"hidden_label_preference"];
5797- noItemsLabel.text = LOCALIZED_STR (@" No items found." );
5797+ noFoundLabel.text = LOCALIZED_STR(@"No items found.");
5798+ noFoundLabel.adjustsFontSizeToFitWidth = YES;
5799+ noFoundLabel.minimumScaleFactor = FONT_SCALING_MIN;
57985800 loadAndPresentDataOnViewDidAppear = YES;
57995801 sectionHeight = LIST_SECTION_HEADER_HEIGHT;
58005802 epglockqueue = dispatch_queue_create("com.epg.arrayupdate", DISPATCH_QUEUE_SERIAL);
0 commit comments