所以這裏是我遇到的麻煩一些代碼:返回stringfromdate方法
//format the date to a string for echoing it
NSDateFormatter* formattedDate = [[NSDateFormatter alloc] init];
[formattedDate setDateStyle:NSDateFormatterLongStyle]; //now myFormatted is set to a long style
NSString* dateForOutput = [formattedDate stringFromDate:self.datePickerOutlet.date];
//also now need to set the "you began on" text to the newly chosen date
[self.startDate setText:@"You started on: %@", dateForOutput];
所給出的錯誤:「參數太多方法調用,預計1,有2個」
我不明白爲什麼它說我想通過兩種方法。 我試圖做的情況下,下面我太傻了,但它仍然給了我一個錯誤:「接口類型不能是靜態分配」
坦白說,我不知道爲什麼它是:給
//format the date to a string for echoing it
NSDateFormatter* formattedDate = [[NSDateFormatter alloc] init];
[formattedDate setDateStyle:NSDateFormatterLongStyle]; //now myFormatted is set to a long style
NSString* dateForOutput = [formattedDate stringFromDate:self.datePickerOutlet.date];
//also now need to set the "you began on" text to the newly chosen date
NSString *foobar = @"You started on: %@", dateForOutput;
[self.startDate setText:foobar];
錯誤給我這個錯誤...一些幫助將不勝感激。 這可能只是我只是沒有看到由於某些原因小東西=/
歡呼聲, 馬特
沒有u表示日期選擇器和創建的UILabel屬性..? – userar 2012-01-02 06:30:19