Switching Branch in Xcode-9
Switching Branch in Xcode-9 In the latest segment of Xcode which was released recently have missing GIT Menu. Press ⌘2 to open the new Source Control Navigator. Right-click on the master icon. To switch to a different branch Right-click on a non-current…
How to Install Adhoc IPA on iphone/ipad using iTunes 12.7?
How to Install Adhoc IPA on iphone/ipad using iTunes 12.7? How to install IPA on Device using iTunes.The latest updates on iTunes is missing APPS section. So here is an article we found on Apple Remember UUID for the devic registered on your account and…
How to Start Your Mac in Safe Mode ?
Safe mode (sometimes called safe boot) is a way to start up your Mac so that it performs certain checks and prevents some software from automatically loading or opening. Starting your Mac in safe mode does the following: Verifies your startup disk and…
How to Install WordPress Using cPanel
How to Install WordPress Using cPanel
Tips to Become a Swift Developer
So, you’ve been around with Swift for a couple of months. Now, you want to become a better Swift Developer? Improve the Readability of Constants import Foundation struct Constants { struct FoursquareApi { static let BaseUrl =…
Best Practice for the file or folder naming conventions !
Best Practice for the file or folder naming conventions Avoid extra long folder names and complex hierarchical structures but use information-rich filenames instead Dos: Z:\Prod\QA\My_Code_Tips.xls Don’ts: Z:\Production \Quality Control\MY…
What is Difference between Storyboard and XIB!
What is Difference between Storyboard and XIB! STORYBOARD In simple words Storyboard is one single file for all the views or screens that in yours apps. It transitions one screen to another screen. It minimizes (reduces) the number of files in your apps.…
Manually Adding a Swift Bridging Header !
Swift Bridging Header Does Xcode automatically create one for me?Yes. Add a new Swift file to your Xcode project. Name it as you please and you should get an alert box asking if you would like to create a bridging header. Note: If you don’t receive a…
Migrate from Swift 2.3 to Swift 3 and xCode 8 !
Upgrade to Xcode 8 without migrating to swift 3 ! We’re well into the betas of Xcode 8 which will contain the final release of Swift 3, hopefully set for release around the first couple weeks of September. With this next release of Xcode, we’re…
Naming conventions in IOS !
Naming constants When talking about constant, there is a distinction worth making: public string IDs that identify a specific class of objects by being unique such as NSNotification names, NSError domains, etc. private IDs which are variables aimed at…