
Search In
If you need to change the color or appearance of the Status Bar of iOS then follow simple steps.
in your code file where you had created or initialized UINavigationController just write few line of code there.
Find similar line as mentioned below i
For iOS push notification services functionality we need a device token (a unique device id generated by device OS for Push Messages communications) on which we can receive push notification messages. To generate the device token we have to add UIApp
If you are using Location Manager to get user's current location then you have ask Location Permission first. iOS provides you access to user's location if user accepts it. Here is the code :-
Below code will return you location manager object.
-(C
Some times we need to create a custom back button for Navigation Bar in iOS. If you want to create an easy navigational back button instead of creating a view and add that view in navigation bar then use below code to achieve it.
UIButton *backBtn =
Can anyone please let me know if it is mandatory to get a GMS license from Google in case someone wishes to embed the Google Play Store & Youtube apk in thier Android dongle when it is shipped ? As per my understanding this is required for Mobi
Apple has deprecated UIAlertView in iOS 8 and above. Now they have introduce UIAlertController, below are the examples.
AlertView without buttons:-
UIAlertController * alert= [UIAlertController
alertControllerWithT
Now you can use UIAlertController as an actionsheet in iOS 8 and above versions. Here is an example of it:-
UIAlertController * view= [UIAlertController
alertControllerWithTitle:@"Sample"
I am writing code to make calls from the app.I am in India. It works fine for non toll free numbers. But for some number such as 18601231000 for BigBasket it is converting the number as +1(860)1231000 which when dialed comes as wrong number.But for n
Hello all,
I dont know what im doing wrong, i only want to check the username and password in the database if they exist show, you are logged in but if they do not exist to show.. you have no access to db
public void logIn(Student student) {
In an Array , elements are zero-indexed i.e first element of an array is at index 0 and the last element is at the index equal to the value of array length minus 1 (array.lenght-1)
Example ->
var name = [ ' first ' , ' second '] ;
console.log( n
