4
NSInteger total = 4556; // Initialize total
// NSLog all fields to make sure the variables are in place
NSLog(@"%@", originField.text);
NSLog(@"%@", destinationField.text);
NSLog(@"%i", [startField.text integerValue]);
NSLog(@"%i", [endField.text integerValue]);
NSLog(@"%i", total);
// Create a dictionary of them
NSDictionary *newDict = [[NSDictionary alloc] initWithObjectsAndKeys:@"Sat. Jan 6th, 2014", @"date", originField.text, @"origin", destinationField.text, @"destination", [startField.text integerValue], @"start", [endField.text integerValue], @"end", total, @"total", @"Personal", @"type", nil];
// EXC_BAD_ACCESS CODE 1
我試過在樂器中使用殭屍模板,但我從來沒有得到一個對話框。當突破時,應用程序在initWithObjectsAndKeys上崩潰。我的死亡變量在哪裏?NSDictionary EXC_BAD_ACCESS
可以使用新的符號'@(someNumber)'來代替,以防止這條長線變得更長。 –
@HotLicks同意。我仍然以傳統風格工作。 – Apurv
我有點來回切換。簡而言之,簡潔的符號很有幫助,因爲否則聲明就變得無法理解。 –