Pages

Wednesday, 15 February 2017

iOS Map Kit View

It is SUPER easy to display interactive map on iOS app using Map View Kit.


Tuesday, 14 February 2017

iOS Auto Layout

As iOS developer, understanding and knowledge about iOS Auto Layout is key.

You must know how it works and how you want it works for your apps.




“Auto Layout is a crucial technology for every iOS developer. It helps you create flexible layouts that work across a range of devices and interface sizes. It also takes a lot of practice to master.”

Thursday, 9 February 2017

iOS App for Mastermind Using Swift

This is the best book related to mobile app development so far.

iOS Apps for Masterminds

Wednesday, 8 February 2017

iOS App Example Using Swift 3.0 Language via XCode 8.2.1 IDE

This is my first trial of iOS app using Swift 3.0 language.




Mechanic of Model-View-Controller (MVC) Design Pattern Simplified

This is the simplest figure I found so far to easily understand the mechanic of MVC design pattern.




How-to add existing local project to GitHub in 10 easy steps



These are the 10 steps.

  1. Login to your GitHub account at www.GitHub.com
  2. Once successful login, create a new repository.
  3. On your Mac or local machine, open terminal application or any other terminal-like application.
  4. On your terminal, change your working directory to your local workspace directory (using cd command).
  5. Type git init to initialise the directory as Git repository.
  6. Type git add .  to add all files to GitHub repository.
  7.  Type git commit -m "First commit from local repository"
  8. At GitHub page, copy the remote repository URL.
  9. At terminal, type git remote add origin remoteURL
  10. Finally, push your local files to remote repository with this command git push -u origin master

Tuesday, 7 February 2017

Augmented Reality with iOS

Today, I'm beginning my new journey with mobile Augmented Reality (AR) with iOS devices (iPhone & iPad).

Setting up the Macbook - done.