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…
iOS Crash Reporting Tools
Mobile app crash reporting tools have evolved to become more developer-friendly over time. We’ve seen them become easier to integrate and offer new features. There are a lot of options out there today.We have found that there’s a crash reporting…
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…
How to create a Gmail account
How to create a Gmail account ‘Google mail’ or ‘Gmail‘ is a web-based email account in which emails are stored on the internet rather than on your computer. Internet email can be a flexible option as you can access emails from any computer…
Each Section of Instruments in Xcode and its Meaning
Each Section of Instruments in Xcode and its Meaning These are the recording controls. The middle red button will stop & start the app currently being profiled when it is clicked. This is actually stopping and starting the app — not pausing it. This…
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 Multiple Buttons in UIAlertView in IOS !
If you are thinking to add multiple buttons in a alert view in IOS , Its very simple now. you need to do few lines of code. please take a look at the below lines of code. @interface YourViewController : UIViewController -…
How to Fix iOS Wi-Fi Problems
iOS 8.3 comes with a number of fixes for Wi-Fi problems but we’ve still seen some complaints about broken Wi-Fi connectivity. There are no guaranteed fixes for Wi-Fi issues though there are some things that iOS 8.3 users can try should connectivity start…
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…