- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的应用程序有一个 12 行的 UITableView,其单元格文本和行高是根据以小时为单位的时间设置的,即当时钟为 6 时,只在 UITableview 的第 6 行显示文本并增加第 6 行的大小只是,隐藏其余的行文本并缩小它们的行高。
我使用 NSDateComponents 获取当前时间(以小时为单位)。问题是当应用程序第一次加载时,行位置显示正确。当应用程序是操作数并且当时时间发生变化时,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;
}
最佳答案
我的处理方式如下:
将 TimeInfo
类替换为 NSDate
上的类别 - 最好将您想要的功能视为 NSDate
的扩展.像这样的东西:
@interface NSDate (currentHourInDay)
-(NSInteger)currentHourInDay;
@end
(.h 文件)
#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 可能表示“每小时的秒数/分钟数”以及“当前时间(以小时为单位)”)。你会显然需要将其导入到您的 VC 中才能使用。
您还应该将 TableView Controller 上的属性名称更改为 hourInDay
创建一个 NSTimer
,每分钟触发一次(或者无论您希望检查之间的间隔有多长)。理想情况下,将其放在属性中。
@property (nonatomic,strong) NSTimer* timer;
使用一些适当的值启动它。请记住,启动计时器会在保留计时器对象的运行循环中进行调度。这意味着即使调度发生的对象被释放,它也会继续触发。如果您需要在对象解除分配或不再使用时停止它,您可以在适当的地方使用 [_timer invalidate]
来做到这一点,例如dealloc
或 viewWillDisappear:
- 这就是您需要属性的原因。
NSTimeInterval minuteInSecs = 60.0;
_timer = [NSTimer scheduledTimerWithTimeInterval:minuteInSecs target:self selector:@selector(timerFired:) userInfo:nil repeats:YES];
请注意,它是 timerFired:不是 timerFired。如果您漏掉了冒号,它将无法工作 - 这意味着选择器需要一个参数。
在同一个对象上实现定时器的回调。在其中,只需检查小时是否已更改,如果已更改,则更新 hourInDay
并重新加载表。如果没有,则什么也不做。
-(void)timerFired:(NSTimer*)timer {
int newHourInDay = [[NSDate date] currentHourInDay];
if(newHourInDay != self.hourInDay) {
self.hourInDay = newHourInDay;
[self.tableView reloadData];
}
}
您现有的逻辑应该处理其余部分
关于ios - 如何在时间(以小时为单位)更改时更新我的应用程序用户界面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33198377/
我有 0 小时、3 小时、12 小时、24 小时、48 小时的数据组……我想绘制这些数据的图表,以便保留时间的比例。 runs <- c(1:25) hours <- as.factor(c(0, 3
例如,如果我选择了时间:下午 3 点和小时数:5 小时,则得到 (8pm) 作为答案“ 最佳答案 let calendar = Calendar.current let date = calendar
我有一个包含两个日期时间字段的表单。用户输入日期 (yyyy-mm-dd) 和时间(3 个框;小时、分钟、上午/下午)。 出于某种原因,第一个没有保存为 24 小时制。 以下数据为输入结果: 2011
我一直在尝试使用导出单位进行计算,但到目前为止我还没有取得任何成果。 我已经尝试过mathjs ,但如果我输入 1 小时 * 1 英里/小时,我会得到 UnsupportedTypeError: Fu
我有两组要运行的 cronjob。第一个应该每 3 小时运行一次,第二个也应该每 3 小时运行一次,但比第一组晚一个小时。什么是正确的语法? // every 3 hours 17 */3 * *
我知道 AWS 中的预留实例更多的是计费而不是实际实例——它们没有附加到实际实例——我想知道: 如果我在特定区域和可用区中购买特定时间的预留实例 - 如果我每天 24 小时使用单个实例与运行 24 个
我试过: seq( from=as.POSIXct("2012-1-1 0", tz="UTC"), to=as.POSIXct("2012-1-3 23", tz="UTC"),
我有一个带有“日期”列的表。我想按小时分组指定日期。 最佳答案 Select TO_CHAR(date,'HH24') from table where date = TO_DATE('2011022
我知道如何在 SQL (SQL Server) 中获取当前日期,但要获取当天的开始时间: select dateadd(DAY, datediff(day, 0, getdate()),0) (res
我正在尝试在游戏之间创建一个计时器,以便用户在失去生命后必须等待 5 分钟才能再次玩游戏。但是我不确定最好的方法是什么。 我还需要它来防止用户在“设置”中编辑他们的时间。 实现这一目标的最佳方法是什么
我的查询有误。该错误显示预期的已知函数,得到“HOUR”。如果我删除这部分,查询将正常工作 (AND HOUR({$nowDate}) = 11) SELECT c FROM ProConvocati
var d1 = new Date(); var d2 = new Date(); d2.setHours(d1.getHours() +01); alert(d2); 这部分没问题。现在我试图在 (
我正在构建一个用于练习的基本时钟应用程序,但出于某种原因,时间不会自动更改为最新的分钟或小时。例如,当前时间是 17:56,但它显示的是 17:54,这是我打开应用程序的最后时间。 NSDate *n
我创建了一张图片,我想将其用作页面的 hr。当它被上传时,它一直向左对齐。我希望它居中,在标题下。这是我的 CSS 代码: .section-underline { height: 35px
这个问题已经有答案了: Getting difference in seconds from two dates in JavaScript (2 个回答) 已关闭 4 年前。 我想计算两个具有不同格
我需要计算到某个日期/时间的剩余时间(天/小时)。 但是,我没有使用静态日期。 假设我在 每个星期日 的 17:00 有一个事件。我需要显示到下一个事件的剩余时间,即即将到来的星期日 17:00。 我
我正在执行这个脚本: SELECT EXTRACT(HOUR FROM TIMEDIFF('2009-12-12 13:13:13', NOW())); 我得到:-838。这是提取时 MySQL 可以
复制代码 代码如下: /** * 小时:分钟的正则表达式检查<br> * <br> * @param pInput 要检查的字符串 * @return boolean 返
连wifi5元/小时 独领风骚 朕好帅 今晚你是我的人 十里桃花 高端定制厕所VP专用 一只老母猪 在家好无聊 你爹的wifi 密码是叫爸爸全拼 关晓彤和鹿晗分手了吗 蹭了我的
我有以下数据框列: 我需要将 csv 列中的对象字符串数据转换为总秒数。 示例:10m -> 600s 我试过这段代码: df.duration = str(datetime.timedelta(df
我是一名优秀的程序员,十分优秀!