iOS Application LifeCycle !!!
App Lifecycle events are available in AppDelegate.m file. When we launching the application first time, then control will goes “application:didFinishLaunchingWithOption” method. This method will be called only once when we starts the application.…
Fundamentals of Objective-C !!!
Objective-C is a general purpose high level Object Oriented programming language. Objective-C programming language designed by using C and Smalltalk-80 programming language. Objective-C programming language follows smalltalk message passing style(syntax)…
IOS History !!!
It is a own Operating System of Apple Corporation, By using iOS only Apple device are work like, iPhone, iPad,iPod,Apple Tv. The orignal name of ‘iOS’ is ‘OSX’ and it was renamed as iOS on 7th June 2010. The first version of iOS is released on June 29th…
How to Integrate or Install AdMob SDK in IOS Projects
How to Integrate or Install admob SDK in IOS Projects Prerequisites -Xcode 5.1 or higher -Deployment target of 5.0 or higher -Recommended: Install CocoaPods to simplify dependency management A-Creating a new project 1-Open up Xcode, and navigate to File…
How to Create Custom Delegate
// MyViewController.h: #import @protocol MyProtocolName; @interface MyViewController: UIViewController @property (nonatomic, weak) id delegate; @end @protocol MyProtocolName @required -(void)requiredDelegateMethod; @optional…
Facebook and Twitter Sharing in iOS application using Social Framework
Facebook and Twitter Sharing in iOS If you are working on iOS app development, then these days, everyone prefers to implement the social network sharing features like Twitter and Facebook sharing. If implemented, then this will add value to your iOS app…
How to take screenshots in iPhone !
screenshots in iPhone Turn on your iPhone. Just hold down the button on the top right of the phone and wait for the white Apple logo to appear. Find the image you want to capture. You can choose any image from your email, photos, home screen, or from…
Swift Programming Language Tutorial (The Basic)
Swift is Apple’s brand new programming language, just released this year at WWDC 2014. This Swift tutorial will take around 15 minutes and will give you a quick tour of the Swift language, including variables, control flow, classes, best practices, and…
How Swift Programming language is similar and different from Objective-C
Similarities to Objective-C Basic numeric types (Int, UInt, Float, Double) Most C operators are carried over to Swift, but there are some new operators Curly braces are used to group statements. Variables are assigned using an equals sign, but compared…