Since the creators of convenience are not always available, that is:
self.minutesLeft = [NSNumber numberWithInt:number];
another template is common if you want an auto-implemented object, if there is no convenient creator:
self.minutesLeft = [[[NSNumber alloc] initWithInt:number] autorelease];
or finally
NSNumber * n = [[NSNumber alloc] initWithInt:number];
self.minutesLeft = n;
[n release], n = 0;
, , ( ). , , , - . , , ( ). ref- / - , , (: , ) - , , .