Skip to main content

Posts

Showing posts from December, 2015

Interview Questions: Dispatch Queues (Serial Queues, Concurrent Queues)

1. Name few C based API in iOS ? Ans: SQLITE, GCD 2. What is Concurrency(in iOS) in short? Ans: It help us to write efficient, fast execution of our app and for more responsive. But at the same time, if we misusing, it will ruin our app with our any mercy. For that reason we should think twice to write any concurrency code. 3. What are most commonly used APIs to implement concurrency Code? Ans: NSOperation and Dispatch Queues. 4. Name few concepts that needed to write concurrent code? Ans: Blocks (we call ‘closures' in Swift Programming Language) 5. What are Queues? Ans: Its a DS(Data Structure) which manages the objects in an order - FIFO(First in First Out) 6. In which form you submit your task to the queue? Ans: In the form of a block. 7. What is an Dispatch Queues? Ans: Its one of the ways to perform tasks in asynchronously and concurrently in our applications. 8. What is meant by a Block in iOS? Ans: Its just a block of Code. 9. Do we have any other queues under the Dispatch

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: UIAlertViewControl

10 Quick differences between Swift and Objective C

Today I found some thing interesting.. i.e Swift vs Objective-C  1. Playgrounds 2. No mandatory interface declaration 3. Simplified declaration syntax 4. Optional Types 5. Type inference 6. Improved memory management 7. Improved “switch” operator 8. Improved enums 9. Support of functional programming approaches and features 10. Support of Generics Click me!. I will take you details information given by redwerk

Delegate tutorial for iOS

There are so many ways in iOS development to pass messages between viewControllers... One of the ways is -->  "Delegation" I found a neat and simple tutorial on Delegation for most of the developer especially newbie's in iOS developement. So I would like to share it with you.. Click Me!!  I will take you to Delegation Tutorial     ---- --- - - - - - - - - - -- -  ---- -- - - -  Have a Happy Coding  -- - - - - -  ----- --- - - - - - - - - - - 

5Star Interview Question on iOS Concurrency: NSOperation and Dispatch Queues

 5Star Interview Question on iOS Concurrency : NSOperation and Dispatch Queues Concurrency is always considered a monster of a subject in iOS development. It can be considered a dangerous area that many developers try their best to avoid. Rumor has it that multithreaded code should be avoided as much as you can. I agree with you that concurrency can be dangerous so if you don’t understand it very well. It is only dangerous because of the unknown. Think of how many dangerous actions or activities that people do in their life, many right? But once they master it, it becomes a piece of cake. Concurrency is a two sided-weapon that you should master and learn how to use it. It helps you to write efficient, fast execution, and responsive apps, but at the same time, misusing it will ruin your app with no mercy. That’s why before starting writing any concurrency code, think first why do you need concurrency and which API do you need to use to solve this problem? In iOS we have
Awesome Tutorial on NSURLConnection to NSURLSession   The biggest and significant change in loading URL from client side(iPad/iPhone). Hope we all know, one of the more significant changes in iOS 7 and Mac OS X 10.9 Mavericks was the overhaul of the Foundation URL Loading System. Don't worry even if you don't know about the above change,  because nothing is late than never. You are very lucky, because you came to right blog to find most interesting/important topics of iOS/Unix. http://hayageek.com/ios-nsurlsession-example/ or Click me.. I will take you to detailed tutorial of this Topic by Mattt Thompson or http://code.tutsplus.com/tutorials/networking-with-nsurlsession-part-1--mobile-21394    ---- --- - - - - - - - - -- -  ---- -- - - -  Have a Happy Coding  -- - - - - -  - -- --- - - - - - - - - - -  
The Right Way To Ask Users For iOS Permissions  You can find the information about the permission on iOS Application @ below link http://techcrunch.com/2014/04/04/the-right-way-to-ask-users-for-ios-permissions/     ---- --- - - - - - - - - -- -  ---- -- - - -  Have a Happy Coding  -- - - - - -  ----- --- - - - - - - - - - -  

Like us on Facebbok