ios – NSInternalInconsistencyException IPhone

If you are facing NSInternalInconsistencyException in IOS development.

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 
'-[UIViewController _loadViewFromNibNamed:bundle:] loaded the "..." 
nib but the view outlet was not set.

Follow the solution for Continue reading “ios – NSInternalInconsistencyException IPhone”

Android AsyncTask Example | Simplest code

AsyncTask

is a background process that easily handle UI without handler.You must know that why we use background process. We need background process / multi threading for long processes like communicate with Internet or database. If you handle Multi Threading smartly then your mobile application should perform better. Continue reading “Android AsyncTask Example | Simplest code”

Android Thread Example : Simplest code

This article will describe Android thread example:-

Multi threading, Processes and Threads in Android application development:

In Android every programm (application) have a main thread. We can’t do long processing in main thread. Long processes like communicate with Internet, parse long data or communicate with database etc. Continue reading “Android Thread Example : Simplest code”