IOS Interview Questions for freshers and experienced

Categories: Interview questions and answers Experienced Freshers IOS

 Question:- What is meant by Enumerations or Enum?

Answer:- A class type containing a group of related items under the same umbrella, but it is impossible to create an instance of it.  

 

Question:- What do you understand by Memento Pattern?

Answer:- A design pattern in which you can save stuff somewhere. This externalized state can be later restored without violating encapsulation and maintaining the privacy of data. iOS has specialized implementations of the pattern and uses it as a part of State Restoration. 

 

Question:- What is the lazy property in swift?

Answer:- When the property is called for the first time, an initial value of the lazy stored properties is calculated. In many situations, lazy properties come handy to developers. 

 

Question:- What do you know about TVMLKit?

Answer:- TVMLKit is the glue between JavaScript, TVML, and the native tvOS application. 

 

Question:- What are the three significant benefits of guard statement?

Answer:- The benefits are:

 

There are no nested if let statements

An early exit out of the function using return or using break

Guard statement safely unwrap optionals. 

We will now look at the next iOS interview question.

 

Question:- What is the difference between ‘bundle ID’ and ‘app ID’?

Answer:- The bundle ID is specified in Xcode, and it defines each App. A single project can have multiple targets and can output multiple apps. Use: it is branded multiple ways and has both free/lite and full/pro versions.

 

App ID is used to identify one or more apps from a single development team. It is a two-part string with a period(.) separating Team ID and bundle IF search string. The bundle ID search string is supplied by the developer, while Apple supplies the Team ID.   

 

Question:- From where should UIKit classes be used?

Answer:- UIKit classes should be used from the application’s main thread only. 

 

Q8. When an app is launched, what are its state transitions like?

Ans. Before launch, an app is not said to be running. After a brief transition through the inactive state, it moves to the background or the active state when it is launched. 

 

We will now look at the next iOS interview question.

 

Question:-  What do you understand by iBeacons?

Answer:-. iBeacon is the technology standard by Apple that allows mobile apps to listen from signs from beacons and react accordingly. This technology allows Mobile Apps to understand their position and deliver hyper-contextual content to users based on their location. The underlying technology is Bluetooth Low Energy. 

 

Question:- List class hierarchy of a UIButton until NSObject. 

Answer:- NSObject->UIResponder_>UIView->UIControl->UIButton. 

 

Question:- Give the difference between nonatomic and atomic properties. Which is preferred

Answer:- Atomic properties always return a fully initialized object. However, it comes at the cost of performance. If there is a property that you know has no risk on initializing value, then set it to nonatomic can gain a bit of performance

 

Question:- What is the use of application:  will Finish Launching With  Options and application: did Finish Launching With Options? 

Answer:- Both of these methods are present in AppDelegate.swift file and are used to add functionality to the App when the App is going to be launched. 

 

Question:- Specify the three rendering options for JSONSerialization.

Answer:- The rendering options are:

 

  • MutableLeaves: Lead strings in the JSON object graph are created as variable strings’ instances. 
  • allowFragments: The parser allows top-level objects that are not array or dictionaries’ instances. 
  • MutableContainers: Dictionaries and arrays are not constants but variable objects. 

Question:- What is a tuple in swift?

Answer:- A temporary container for multiple values is called a tuple. It is a list comma-separated type and is enclosed in parentheses. 

 

Question:- What is meant by QOS in app development?

Answer:- QOS stands for Quality of Service. 

 

Question:- Give the use of KVC or Key-value coding.

Answer:- KVC is used to access a property or value with the help of a string. 

 

Question:- What are the essential certificates for issuing and developing apps, either Android or iOS?

Answer:- The certificate types are:

 

Development Certificate

Distribution Certificate 

Development and Distributing Certificates 

Question:-  What is ‘assign’ in iOS?

Answer:- In iOS, ‘assign’ is used to create an orientation from one object to the other without raising the retain count of the source object.

 

Question:- Why is ‘reuseIdentifier’ used? 

Answer:- The ‘reuseIdentifier’ is used to group all the similar rows from UITableView.

 

Question:- How can you reduce the size of the App?

Answer:- The three different methods to reduce app size are:

 

Bit code

On-demand Resource

App Slicing 

Question:-  What is the difference between retaining and copy?

Answer:- Retaining an object means increasing the retain count by one. The instance of the object is kept in memory till its retain count drops to zero. A reference to the instance is stored, and the same is shared with anyone who retained it. At the same time, copy means that the object will be cloned with duplicated value, but it cannot be shared with anyone else. 

Question:-What do you understand by category? When is it used? 

Answer:-A category is a way to add additional methods to a class without extending it. It is used to add a collection of related methods and additional methods to built-in classes in the Cocoa Frameworks. 

 

R4R.co.in Team
The content on R4R is created by expert teams.