Noorul Asan
iOS App Developer
Friday, 22 August 2014
Hide the Status Bar in iPhone (iOS 7)
- (
BOOL
)prefersStatusBarHidden
{
if
(
UI_USER_INTERFACE_IDIOM
() ==
UIUserInterfaceIdiomPhone
)
return
YES
;
else
return
NO
;
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
iOS Interview Questions and Answers
What is latest iOS version? IOS 11.0.3 What is latest Xcode version? Xcode 9 What are the features in Xcode 9? ...
Click on UITextField to show a UIPickerView
Some time it is required in iPhone to add UIPickerView in UIActionSheet. Here are the steps to do that In ViewController.h @inte...
Add a Calendar into iOS - CKCalenderView
Create a ViewController File for Calendar. In Framework File use to customise the functions & Values in iOS [You can set the Minimum d...
No comments:
Post a Comment