nsstring に接続されている uilabel があります。ただし、nsstring を曜日 (月曜日、火曜日など) に設定しようとしています。ただし、実行するたびに、何も得られません。nsdate から値を取得していないためだと感じています。ただし、私は xcode を初めて使用するので、何が間違っているのかよくわかりません。
-(void)viewDidLoad {
NSDate *today = [[NSDate alloc] init];
NSCalendar *gregorian = [[NSCalendar alloc]
initWithCalendarIdentifier:NSGregorianCalendar];
// Get the weekday component of the current date
NSDateComponents *weekdayComponents = [gregorian components:NSWeekdayCalendarUnit
fromDate:today];
NSString *dateString = weekdayComponents;
_label.text = dateString;
}