UIButton UIButton is the simplest UI component in iOS was the first component which I learnt in objective C. Here is the code that created the UIButton dynamically in swift – apple’s new programming language. You can also customize the button and play with it. 123456let dunamicButton = UIButton.buttonWithType(UIButtonType.System) as UIButton dunamicButton.backgroundColor = UIColor.greenColor() dunamicButton.setTitle("Button", […]
Uncategorized
Generate .pem file for PUSH Notification
You can also find older version of this tutorial on Stack overflow which I answered Here First of all login into your developers account – https://developer.apple.com/account/ you will be redirected to following screen, Click on “Certificates”. Step 1 : Click “+” button Step 2 : Select “Apple Push Notification service SSL (Production)” and click […]
Creating Hello World Using Swift

Creating Hello World Using Swift – is the first tutorial of our course. For building this tutorials we have used Xcode 6 iOS 8 swift programming language First let’s take a look at final app that we are about to build. This will be a very simple app having one button “Say Hello”, when […]