Skip to main content

iOS Interview Questions Set 1(Real Time)

Dear All,

Here are few interview Question which I have faced from one of the reputed organization.

1. Delegate VS Blocks
2. Live Rendering in XCode
3. Storyboard and Multiple Story Board
4. Storyboard or XIB Code
5. Objective C Programming Language Version
6. Swift Programming Language version
7. Stack Over Flow Contribution - Open Source Forums
8. Any iOS Tutorial Links
9. How will go and handle new project.
10. How will maintain Folder Structure in Xcode (MVC)
11. Do you know about Image Asserts( What is the difference between older version and latest version related to Image Asserts(In latest version..its made our life easier ..what is that)
Ans:
     1. It tell us if any images missed. 
     2. It will automatically named.
12. Git VS SVN
13. Cocoa Pod
14. What are StoryBoard Contraints.
15. When do you use child view controller.
16. Test Flight
17. Difference between distribution profile and Developer Profile
18. When is the WWDC Release
19. Blocks Usage Ex: UIAlertViewController
20. Which one is better  on Delegate VS Blocks

21. How to get retain count of an Object?
22. Diff between NSURLConnection and NSURLSession?
 ---- --- - - - - - - - - - -- -  ---- -- - - -  Have a Happy इंटरव्यू   -- - - - - -  ----- --- - - - - - - - - - - 

Comments

Post a Comment

If any of my posts helped you.... or if you feel for any improvement.. you can leave a comment here.. So that, I will try to implement or make corrections for all of us.

Popular posts from this blog

Disable back swipe gesture in UINavigationController

Disable back swipe gesture in UINavigationController(Back swipe in Navigation is a default feature from iOS 7 onwards)  Below Code will completely remove swipe gesture to all view controllers:(Keep in it your base view controller's ViewDidLoad method) if ([ self . navigationController respondsToSelector : @selector ( interactivePopGestureRecognizer )]) [ self . navigationController . view removeGestureRecognizer : self . navigationController . interactivePopGestureRecognizer ];    Below code will remove to particular viewcontroller: self . navigationController . interactivePopGestureRecognizer . enabled = false ;     ---- --- - --- - - - - - - -- - - -  Have a Happy iOS Objective C + Swift Coding  -- - - - - --- - - -  - - -  - - - - - - -   

UIKit Framework Hierarchy

UIKIT Framework Hierarchy

CoreData and its Interview Questions

Core Data takes advantage of the Objective-C language and its runtime, and neatly integrates with the Core Foundation framework. The result is an easy to use framework for managing an object graph that is elegant to use and incredibly efficient in terms of memory usage. Every component of the Core Data framework has a specific purpose and function. If you try to use Core Data in a way it wasn't designed for, you will inevitably end up struggling with the framework. Developers new to the Core Data framework often confuse it with and expect it to work as a database. If there's one thing I hope you'll remember from this series, it is that Core Data isn't a database and you shouldn't expect it to act like one. It's the Model in the Model-View-Controller pattern that permeates the iOS SDK. Core Data isn't the database of your application nor is it an API for persisting data to a database. Core Data is a framework that manages an object graph. It...

Like us on Facebbok