如何在时间(以小时为单位)更改时更新我的​​应用UI

时间:2015-10-18 13:20:52

标签: ios objective-c

我的应用程序有一个UITableView有12行,其单元格文本和行高是根据时间设置的,即当时钟为6时比仅显示UITableview第6行中的文本并增加第6行的大小只保留其余的行文本隐藏,行高更小。

我使用NSDateComponents获取以小时为单位的当前时间。问题是当app第一次加载时,行位置会正确显示。 当app是操作数并且时间在那时改变时,UI不会更新,即行位置不会改变。 我想我需要NSNotificationCentre在小时更改时通知,然后用它来更新行位置。

任何人都可以解释我如何做到这一点吗?

以下是我的应用中的代码。

TimeInfo.h

#import <Foundation/Foundation.h>
@interface TimeInfo : NSObject

@property (nonatomic) NSInteger timeNow;
-(NSInteger)currentTimeInHour;

TimeInfo.m

#import "TimeInfo.mh"

@implementation TimeInfo

-(NSInteger)currentTimeInHour{
    NSDate *now = [NSDate date];
    NSCalendar *calendar = [NSCalendar currentCalendar];
    NSDateComponents *components = [calendar components:NSCalendarUnitHour fromDate:now];
    NSInteger hour = [components hour];
    return hour;
}

@end

tableViewController.h

#import <UIKit/UIKit.h>
#import "TimeInfo.h"

@interface TableViewController : UITableViewController


@property (nonatomic) NSInteger timeInHour;

@end

tableViewController.m

#import "TableViewController.h"

@interface TableViewController ()
{
    NSMutableArray *someArray;   
}

@end

@implementation TableViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    TimeInfo *first = [[TimeInfo alloc]init];
    self.timeInHour  = [first currentTimeInHour]; //call method to get time in hour

     someArray = [[NSMutableArray alloc]init];
    [someArray insertObject:@"19" atIndex:0 ];
    [someArray insertObject:@"20" atIndex:1 ];
    ...........................................
    [someArray insertObject:@"45" atIndex:12]; // this is just for example, though I am loading data in array from plist. //not shown here.

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return somerArray.count;
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];


    if (self.timeInHour <= 12) {
        NSInteger firstHalf = self.timeInHour - 1;
        if (indexPath.row == firstHalf) {
            cell.textLabel.text = someArray[firstHalf]
        }

    } else if (self.timeInHour > 12){
        NSInteger secondHalf = self.timeInHour -13;
        if (indexPath.row == secondHalf) {
            cell.textLabel.text = someArray[secondHalf];
        }
    }
        return cell;
}


-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {

   __block int blockValue =  45; //this is height for all the row except one which will be set from inside block and will match the cellForRowAtIndex method also// value will get changed from inside block.

    void (^tableRowHeightForThisHour)(void) = ^{

        if (self.timeInHour <= 12) {
            NSInteger firstHalf = self.timeInHour - 1;
            if (indexPath.row == firstHalf) {
                blockValue = 172;
            }

        } else if (self.timeInHour > 12){
            NSInteger secondHalf = self.timeInHour -13;
            if (indexPath.row == secondHalf) {
                blockValue = 172;
        }
    }

    }; //block ends here.

    tableRowHeightForThisHour();
    return blockValue;
}

1 个答案:

答案 0 :(得分:1)

我处理此问题的方式如下:

  1. TimeInfo类替换为NSDate上的类别 - 您希望的功能最好被视为NSDate的扩展名。类似的东西:

    @interface NSDate (currentHourInDay)
    -(NSInteger)currentHourInDay;
    @end
    

    (。h file)

    #import "NSObject+currentHourInDay.h"
    
    @implementation NSDate (currentHourInDay)
    
    -(NSInteger)currentHourInDay {
      NSCalendar *calendar = [NSCalendar currentCalendar];
      NSDateComponents *components = [calendar components:NSCalendarUnitHour fromDate:self];
      NSInteger hour = [components hour];
      return hour;
    }
    
    @end
    

    (。m档案)

    这与您的方法基本相同,但重命名后会使其更清晰。 (currentTimeInHour可能意味着&#39;秒数/分钟数以及当前时间(以小时为单位))。你&#39; 11 显然需要将它导入VC才能使用它。

    您还应该将表格视图控制器上的属性名称更改为hourInDay

  2. 创建一个NSTimer,每分钟一次(或者在检查之间需要多长时间)。理想情况下,把它放在一个属性中。

    @property (nonatomic,strong) NSTimer* timer;
    

    使用一些适当的值启动它。请记住,启动计时器会在runloop上安排它,它会保留计时器对象。这意味着即使调度发生的对象被释放,它也将继续触发。如果您需要在对象deallocs或不再使用时停止它,您可以在某个适当的位置使用[_timer invalidate]执行此操作,例如deallocviewWillDisappear: - 这就是您需要财产的原因。

    NSTimeInterval minuteInSecs = 60.0;
    _timer = [NSTimer scheduledTimerWithTimeInterval:minuteInSecs target:self selector:@selector(timerFired:) userInfo:nil repeats:YES];
    

    请注意,它的timerFired:NOT timerFired。如果你错过冒号它将无法工作 - 这意味着选择器需要参数。

  3. 在同一对象上实现计时器的回调。在其中,只需检查小时是否已更改,如果已更改,请更新hourInDay并重新加载表。如果它没有,则什么也不做。

    -(void)timerFired:(NSTimer*)timer {
      int newHourInDay = [[NSDate date] currentHourInDay];
      if(newHourInDay != self.hourInDay) {
        self.hourInDay = newHourInDay;  
        [self.tableView reloadData];
      }
    }
    
  4. 你现有的逻辑应该处理其余的