Preguntas de programación orientada a objetos
Ios Software Engineer 2 Interview Questions
5,593 ios software engineer 2 interview questions shared by candidates
What is iphone reference library?
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()
Add something cool to the app.
Most of the questions were about general knowledge and about the code challenge
About my work history, work style and experience
From JSON file implement UI.
What are singletons? When is an example of when they are good?
Take home assesment to build a swift app
1 iOS related problem regarding downloading images for an iOS client and optimising network call count depending on number of simultaneous network calls.
Viewing 641 - 650 interview questions