Skip to main content

Unix Command: Want to know the which XCode Version supports you Terminal from Your Terminal Application(Unix)

         What is your default XCode Version(if you have many)

 

Default XCode version from Terminal Command:

 > xcodebuild -showsdks 

 If XCode 7.2 installed and assigned from XCode Preferences as default like below:

 



 

 Run the Command:

 > xcodebuild -showsdks 

OS X SDKs:
    OS X 10.11                        -sdk macosx10.11

iOS SDKs:
    iOS 9.2                           -sdk iphoneos9.2

iOS Simulator SDKs:
    Simulator - iOS 9.2               -sdk iphonesimulator9.2

tvOS SDKs:
    tvOS 9.1                          -sdk appletvos9.1

tvOS Simulator SDKs:
    Simulator - tvOS 9.1              -sdk appletvsimulator9.1

watchOS SDKs:
    watchOS 2.1                       -sdk watchos2.1

watchOS Simulator SDKs:
    Simulator - watchOS 2.1           -sdk watchsimulator2.1

 

Comments

Popular posts from this blog

UIKit Framework Hierarchy

UIKIT Framework Hierarchy

Disable back swipe gesture in UINavigationController

Disable back swipe gesture in UINavigationController(Back swipe in Navigation is a default feature from iOS 7 onwards)  Below Code will completely remove swipe gesture to all view controllers:(Keep in it your base view controller's ViewDidLoad method) if ([ self . navigationController respondsToSelector : @selector ( interactivePopGestureRecognizer )]) [ self . navigationController . view removeGestureRecognizer : self . navigationController . interactivePopGestureRecognizer ];    Below code will remove to particular viewcontroller: self . navigationController . interactivePopGestureRecognizer . enabled = false ;     ---- --- - --- - - - - - - -- - - -  Have a Happy iOS Objective C + Swift Coding  -- - - - - --- - - -  - - -  - - - - - - -   

Middle Level iOS Developer interview questions

Middle Level iOS Developer interview questions 1) App Thinning 2) Steps for pushing application to app store 3) How push notification works 4) How google TEZ app getting near devices for get and send money 5)Retain Concept in iOS 6)Memory management  in iOS 7)ARC means 8) Syntax for shared instance 9) optionals and unwraping 10) Design pattarns 11) Tab bar insertion between screens 12) how to load images in table view using urls for each image by smooth scrolling  13) Extenstions 14)Clousers 15)Life cycles  16)how Table view reusable works?

Like us on Facebbok