Ios Interview Questions

7,849 ios interview questions shared by candidates

For this swift code below, what's the order of things being printed out in the console? class Master { lazy var detail = Detail(master: self) init() { Swift.print("Master init") } deinit { Swift.print("Master deinit") } } class Detail { var master : Master init(master : Master) { Swift.print("Detail init") self.master = master } deinit { Swift.print("Detail deinit") } } func createMaster() { var master: Master = Master() var detail = master.detail } createMaster()
avatar

IOS Developer

Interviewed at Gap Inc.

3.7
Feb 19, 2019

For this swift code below, what's the order of things being printed out in the console? class Master { lazy var detail = Detail(master: self) init() { Swift.print("Master init") } deinit { Swift.print("Master deinit") } } class Detail { var master : Master init(master : Master) { Swift.print("Detail init") self.master = master } deinit { Swift.print("Detail deinit") } } func createMaster() { var master: Master = Master() var detail = master.detail } createMaster()

Viewing 861 - 870 interview questions

Glassdoor has 7,849 interview questions and reports from Ios interviews. Prepare for your interview. Get hired. Love your job.