1

好的,所以基本上我试图将标签链接到 XCode 4.6.2 中的代码块。我使用设计器链接它,但无论我把它放在哪里,它都会给我这个错误消息。我是 xcode 的新手,觉得这应该是一个简单的修复。感谢您的反馈/

(void)updateLabel {
    @property (weak, nonatomic) IBOutlet UILabel *Timer;

    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    int units = NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
    NSDateComponents *components = [calendar components:units fromDate:[NSDate date] toDate:destinationDate options:0];
        [dateLabel setText:[NSString stringWithFormat:@"%d%c %d%c %d%c %d%c %d%c", [components month], 'M', [components day], 'D', [components hour], 'H', [components minute], 'M', [components second], 'S']];


    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.


        destinationDate = [[NSDate dateWithTimeIntervalSince1970:1383652800] retain];
        timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(updateLabel) userInfo:nil repeats:YES];



}
4

2 回答 2

6

问题是 an@property只能出现在@interface. 这可以在 .h 文件中或在 .m 文件的类扩展中。但它肯定不能放在方法实现中。

鉴于您的属性也是IBOutlet.h 文件,它应该位于 .h 文件中。

边注:

创建标签文本的方式很奇怪。至少,请执行以下操作:

NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
int units = NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
NSDateComponents *components = [calendar components:units fromDate:[NSDate date] toDate:destinationDate options:0];
dateLabel.text = [NSString stringWithFormat:@"%dM %dD %dH %dM %dS", [components month], [components day], [components hour], [components minute], [components second]];

更好的是,使用NSDateFormatter

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"M'M' d'D' H'H' m'M' s'S'"];
dateLabel.text = [formatter stringFromDate:[NSDate date]];
于 2013-05-25T20:17:36.433 回答
0

@property 声明不属于您的函数。您应该始终在函数之前放置“@”声明。

于 2013-05-25T20:17:17.830 回答