tilakgondi.wordpress.com
Categories in Objective-C – By A Beginner
https://tilakgondi.wordpress.com/2015/04/04/categories-in-objective-c/comment-page-1
Every Expert Was Once A Beginner. Categories in Objective-C — April 4, 2015. April 4, 2015. April 4, 2015. Objective-C provides a feature for defining the new methods for an existing class even for the class whose source code is not available to you. One can make use of categories when their is a need to add new methods to the predefined classes such as COCOA classes-‘NSString etc.’ without sub-classing it . Now consider the above. Import “car.h”. Car Maintenance.h “. Car *car1 = [ Car alloc. Click to sh...
tilakgondi.wordpress.com
iOS: Core Data Framework – By A Beginner
https://tilakgondi.wordpress.com/2015/01/20/ios-core-data-framework
Every Expert Was Once A Beginner. IOS: Core Data Framework — January 20, 2015. IOS: Core Data Framework. January 20, 2015. January 20, 2015. Core Data is a framework by apple which deals with the model layer of the. It was introduced in. Mac OS X 10.4 Tiger. With iPhone SDK 3.0. Core Data Framework is made up of core data stack . It is t. He ordered collection of objects from a. Persistent object store coordinator. Fig:10 Core Data Stack Contents. In Core Data the. Only once the stack has been created...
tilakgondi.wordpress.com
iOS:To seprate group of ANAGRAMS in an array – By A Beginner
https://tilakgondi.wordpress.com/2015/01/17/iosto-seprate-group-of-anagrams-in-an-array
Every Expert Was Once A Beginner. IOS:To seprate group of ANAGRAMS in an array — January 17, 2015. IOS:To seprate group of ANAGRAMS in an array. January 17, 2015. January 20, 2015. Here is the code for grouping and printing the set of anagrams in an array.If any better solutions please Comment. Do any additional setup after loading the view, typically from a nib. Get the letter by letter in tmpStr2. Characters in tmpStr2 not found in tmpStr1. Characters in tmpStr2 found in tmpStr1. Find on Git: Here!
tilakgondi.wordpress.com
July 2015 – By A Beginner
https://tilakgondi.wordpress.com/2015/07
Every Expert Was Once A Beginner. Protocols in Objective – C — July 6, 2015. Protocols in Objective – C. July 6, 2015. July 6, 2015. In Java and C#, and like. In C similarly in Objective – C we have ‘. To declare a custom protocol we can use the below syntax. A protocol can be declared in the ‘.h’ file of a class before the interface declaration. Protocol MyProtocolName / My protocol methods declaration @end. You can mark a class as conforming to above protocol by declaring so in the class’s interface:.
tilakgondi.wordpress.com
iOS: To Draw Poly line on apple maps to show directions from Source to Destination in your app. – By A Beginner
https://tilakgondi.wordpress.com/2015/01/24/ios-to-draw-poly-line-on-apple-maps-to-show-directions-from-source-to-destination-i-your-app
Every Expert Was Once A Beginner. IOS: To Draw Poly line on apple maps to show directions from Source to Destination in your app. — January 24, 2015. IOS: To Draw Poly line on apple maps to show directions from Source to Destination in your app. January 24, 2015. March 19, 2015. To set the source place mark MKPlacemark *source = [ MKPlacemark alloc. To create the source map items MKMapItem *srcMapItem = [ MKMapItem alloc. Similarly we use same to set the destination place mark and map item using,. Respon...
tilakgondi.wordpress.com
Categories in Objective-C – By A Beginner
https://tilakgondi.wordpress.com/2015/04/04/categories-in-objective-c
Every Expert Was Once A Beginner. Categories in Objective-C — April 4, 2015. April 4, 2015. April 4, 2015. Objective-C provides a feature for defining the new methods for an existing class even for the class whose source code is not available to you. One can make use of categories when their is a need to add new methods to the predefined classes such as COCOA classes-‘NSString etc.’ without sub-classing it . Now consider the above. Import “car.h”. Car Maintenance.h “. Car *car1 = [ Car alloc. Click to sh...
tilakgondi.wordpress.com
KVC in Objective-C – By A Beginner
https://tilakgondi.wordpress.com/2015/04/29/kvc-in-objective-c-2
Every Expert Was Once A Beginner. KVC in Objective-C — April 29, 2015. April 29, 2015. June 9, 2015. KVC- Key Value Coding in Objective-C provides a mechanism for accessing the object properties indirectly. KVC makes use of strings to identify the objects properties ,rather than using the accessor methods or accessing them directly through instance variables. What are Keys and Key Paths? Eg: For a "Person Object" the keys would be firstName,lastName,emailId,address,empId. and so on. We can easily get the...
tilakgondi.wordpress.com
KVO In Objective – C – By A Beginner
https://tilakgondi.wordpress.com/2015/06/17/kvo-in-objective-c
Every Expert Was Once A Beginner. KVO In Objective – C — June 17, 2015. KVO In Objective – C. June 17, 2015. June 17, 2015. Key Value Observing ,. Is the feature provided by. Which allows an object to register itself to be notified when another object changes the value of one of its properties. Here the controller would ask the model object for notification when the data changes , when the controller receives the notification from the model, the view is updated. An NSDictionary that contains information ...
tilakgondi.wordpress.com
April 2015 – By A Beginner
https://tilakgondi.wordpress.com/2015/04
Every Expert Was Once A Beginner. KVC in Objective-C — April 29, 2015. April 29, 2015. June 9, 2015. KVC- Key Value Coding in Objective-C provides a mechanism for accessing the object properties indirectly. KVC makes use of strings to identify the objects properties ,rather than using the accessor methods or accessing them directly through instance variables. What are Keys and Key Paths? Eg: For a "Person Object" the keys would be firstName,lastName,emailId,address,empId. and so on. We can easily get the...