objective C

Pull Code from Bitbucket repository to MacBook

To Pull code from a repository to your MacBook you have to follow below steps Open up a terminal. Create a folder so that you can track where you want to pull code from BitBucket. If already have folder, then navigate to it using the command ‘cd‘ Apples-MacBook:~ apple$ cd Desktop Apples-MacBook:Desktop apple$ mkdir PulledCodeFromBitBucket Apples-MacBook:Desktop […]

Pull Code from Bitbucket repository to MacBook Read More »

Integrate Applovin banner ad in IOS

Applovin SDK for monetization of smartphone is an another better alternative for the app developers. Recently I got a project and my Project manager asks me to integrate different ad networks that are available for smartphone app monetization. So when I started integrating Applovin SDK, I comfortably integrated popover ads, but had some tough ask when adding a banner

Integrate Applovin banner ad in IOS Read More »

Difference between NSString and NSMutableString

Difference between NSString and NSMutableString  is a common interview question faced by every programmer and the most familiar answer to this is that one can append string in NSMutableString and not in NSString. So question arrived from other end,  any other difference you know?. As I can append string to NSString too. In this post

Difference between NSString and NSMutableString Read More »

iPhone Development: Post text or image to Whats-app in IOS

Whats-app, a common social platform gaining popularity very rapidly and now its time to let the app user’s share contents from native apps to their whats-app friends. In our IOS app development we can share content with whats-app friends using two techniques provided by whats-app. 1. Through cstom URL scheme.2. Through UIDocumentInteractionController. If you want

iPhone Development: Post text or image to Whats-app in IOS Read More »

iPhone Development: Encoding and decoding JSON in IOS

JSON(Java Script Object Notation), according to its definition its an open standard format that send data to transmit in a key value pair and is easy to readable by human. In, IOS we can encode and decode our data into JSON or from  JSON using in built class provided by Xcode and is named as

iPhone Development: Encoding and decoding JSON in IOS Read More »

programmatically share image to Instagram through iOS app

Instagram is another most popular social platform for sharing images. Now days, every app share image to Instagram too. Since like other social platforms Instagaram does not provide developers permission to write image directly on the user Instagarm wall. So for this we can use UIDocumentInteractionController provided in Xcode. For sharing/posting image to Instagarm, you

programmatically share image to Instagram through iOS app Read More »