App Transport Security & Opening URL Schemes – iOS9 Compatibility

App Transport Security

New SDK of iOS has “App Transport Security” which encourages developers to use https instead of http. If you compile your app with iOS9 SDK, you will get the following error while it’s try to make a http request.

App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app’s Info.plist file.

Read More »

Code Snippets on Xcode – How to call your most used methods quickly

Code snippets let you call your methods with typing 3 or 4 characters. They are most likely short cuts which you can customize contents as you wish and Xcode lets you to add your custom method calling shortcuts.

Xcode also have some basic code snippets. For example, If you type “typedef” for defining a enumaration, Xcode offers code snippets automatically.Read More »