因此,我有一个Task实体类(Core Data),并且尝试覆盖其字符串之一(stimeIntervalString)的设置器,以便可以在表视图单元格的详细文本标签中显示该设置器。由于某种原因,我遇到这样的EXC_BAD_ACCESS错误:



[Tasks timeIntervalString]一直持续到37355 ...

这是我的代码:

-(NSString *)timeIntervalString{

    NSUInteger seconds = (NSUInteger)round(self.timeInterval);
if ((seconds/3600) == 0){
    if (((seconds/60) % 60) == 1) {
        self.timeIntervalString = [NSString stringWithFormat:@"%u MIN", ((seconds/60) % 60)];
    } else {
        self.timeIntervalString = [NSString stringWithFormat:@"%u MINS", ((seconds/60) % 60)];
    }
} else if ([self.conversionInfo hour] == 1) {
    if (((seconds/60) % 60) == 0){
        self.timeIntervalString = [NSString stringWithFormat:@"%u HR", (seconds/3600)];
    } else if (((seconds/60) % 60) == 1) {
        self.timeIntervalString = [NSString stringWithFormat:@"%u HR %u MIN", (seconds/3600), ((seconds/60) % 60)];
    } else {
        self.timeIntervalString = [NSString stringWithFormat:@"%u HR %u MINS", (seconds/3600), ((seconds/60) % 60)];
    }
} else {
    if (((seconds/60) % 60) == 0) {
        self.timeIntervalString = [NSString stringWithFormat:@"%u HRS ", (seconds/3600)];
    } else if (((seconds/60) % 60) == 1){
        self.timeIntervalString = [NSString stringWithFormat:@"%u HRS %u MIN", (seconds/3600), ((seconds/60) % 60)];
    } else {
        self.timeIntervalString = [NSString stringWithFormat:@"%u HRS %u MINS", (seconds/3600), ((seconds/60) % 60)];
    }
}
return self.timeIntervalString;


}

有任何想法吗?

最佳答案

return self.timeIntervalString只会递归调用相同的timeIntervalString方法。

您可能想要的是return _timeIntervalString

说明:self.timeIntervalString是属性访问器语法糖,与[self timeIntervalString]相同,它将调用您在此处定义的-(NSString *)timeIntervalString方法。 return _timeIntervalString更改将使之生效,因此您可以直接访问实例变量,而不必递归调用属性访问器。这是您编写的任何自定义属性访问器方法中应遵循的常规模式。

编辑:根据评论中的讨论,最好将其标记为只读属性,而从不实际设置该值:

在您的.h文件中:

@property (readonly) NSString *timeIntervalString;


在您的.m文件中:

-(NSString *)timeIntervalString {
    NSString *value;
    // insert here the body of your timeIntervalString method, as you
    // originally wrote it, but replace all occurences of:
    // self.timeIntervalString = ...
    // with this: value = ...
    return value;
}

10-08 05:45