Sunday 11 December 2016

Code Quality Measurement - Comics


It’s not that much easy to measure the code quality???? 
Because the best part of programming lays at all the edges of the sphere, so first we need to find those edges of the sphere…  !@#!@%

Quality has been determined only based on low rate in the 
No. of WTFs/Minute…. 


This can be resolved by following some basic standards and there are some code analysis tools help us lot on this


Sunday 4 December 2016

Navigation Controller using Storyboard - iOS Swift

This code will be really useful to you to change the view controller using Storyboard ID.

For example -
There were 2 view Controllers named FirstViewController and SecondViewController respectively.
If you want to move from FirstViewController to SecondViewController there is a simple Code using Storyboard  ID.

Step 1 :-

Enter the StoryBoard ID for both the ViewControllers
 

Step 2 :-

Write a code in FirstViewController.
//to navigate to the next view controller with the help of storyboard
let secondVC =  self.storyboard?.instantiateViewControllerWithIdentifier("SecondViewController") as! SecondViewController
self.navigationController?.pushViewController(secondVC, animated: true)