How to install Application via Test Flight in IOS ?
I found something on how to install Application via Test Flight in IOS . Here, appStoreReceiptURL is an instance property, which we can find from main bundle. Here, I am adding snippet for both Objective-C and Swift. Objective-C - (BOOL)isTestFlight {…
How to create a UICollectionView Objective-C
How to create a UICollectionView Objective-C
What is Constructors and Creating Objects in Objective C !
What is Constructors and Creating Objects in Objective C ! Constructor/initializer is a method which we call while creating a new object in Object Oriented Programming. In this method we write all the code related to initial setup of an object. Objective…
Downloading Data using NSURLConnection in IOS using Objective-C
Downloading Data using NSURLConnection in IOS using Objective-C There are several cases when you need to download an image from a specific url, so it is better that you know how to do it easily and effectively. Today I’m gonna show you how it can be…
Downloading Data using NSURLSession in IOS using Objective-C
Downloading Data using NSURLSession in IOS using Objective-C Whether an app retrieves application data from a server, updates your social media status or downloads remote files to disk, it’s the HTTP network requests living at the heart of mobile…
Why do We Need Concurrency in IOS ?
I know you’re a good developer with experience in iOS. No matter what kinds of apps you’re going to build, however, you will need to know concurrency to make your app more responsive and fast. Here I summarize in points the advantages of learning or…
Steps to reviewing your codes in IOS !
Most of the time when i am sitting to code in Xcode for IOS apps , one thing in my mind is to finish the task related to Project…Whether it is well planned or not.But the problem i always face because of unmanaged structure of the code and project…
how to split a file in chunk in IOS or Javascript
How to split a file in chunk in IOS or Javascript Uploading in HTML has always left much to be desired from developers. Uploading files which are only a few hundred kilobytes in one go is all fine and good on a standard connection, but what of mobile…
Meaning of List of sections in Call Tree in Instruments in Xcode Instruments
Meaning of List of sections in Call Tree in Instruments in Xcode Instruments Separate by Thread: Each thread should be considered separately. This enables you to understand which threads are responsible for the greatest amount of CPU use. Invert Call…
How to add a toolbar to an iOS iPhone app with a Storyboard
I’ve been playing around with iPhone apps a little bit. Some apps require a toolbar in iPhones apps. A basic task is to add a toolbar with buttons to your application using XCode. Lots of samples online are using old versions of XCode. Allow me to…