I'm trying to use the dictionary function... some sites have told me to review my storyboard but I haven't created one..?
NSMutableDictionary * AllStudentsUpdated = [[NSDictionary alloc]initWithObjectsAndKeys:
@"Avni Parikh", @"012700",
@"Kyle Kurt", @"325325",
@"Vidhi Shah", @"122146"
, nil];
[AllStudentsUpdated setObject:@"Pallavi Patel" forKey:@"161616"];// this is where the error is
You are initializing NSMutableDictionary with NSDictionary... just update your code to this.
Clean your build folder and run your app. That will solve your problem.