Basic Questions in IOS & objective-c, iOS 15 Apr 2016 Google phone interview for iOS mobile developer position An outline of google phone interview: Question 1 // Create a function that takes int numbers[1000] and sorts it into… Andrey
Basic Questions in IOS & objective-c 05 Feb 2016 Difference between formal and informal protocols An informal protocol is a Category on NSObject. Implementation of the methods is optional. @interface NSObject(NSApplicationNotifications) - (void)applicationWillFinishLaunching:(NSNotification *)notification; ...… Andrey
Basic Questions in IOS & objective-c 03 Feb 2016 Difference between shallow copy and deep copy Shallow copy only copies a memory address. Changing one object will also change another. NSMutableArray *firstArray = [[NSMutableArray alloc] initWithObjects:@1,… Andrey
Basic Questions in IOS & objective-c 03 Feb 2016 Difference between frame and bound Frame is a CGRect that is relative to it's superview and bound is a CGRect that is relative to it's… Andrey