Posts

Showing posts from August, 2015

Xcode 7 iOS Create Basic Segue

Image
. Basic Segue Basic Segue .

Official iOS Swift Apps Development Tutorial

Image
- A) GETTING STARTED 1. Introduction https://developer.apple.com/library/prerelease/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/index.html#//apple_ref/doc/uid/TP40015214-CH2-SW1 2. Learn the Swift essentials https://developer.apple.com/library/prerelease/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/Lesson1.html#//apple_ref/doc/uid/TP40015214-CH3-SW1 B) BUILDING THE UI 1. Build a Basic UI https://developer.apple.com/library/prerelease/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/Lesson2.html#//apple_ref/doc/uid/TP40015214-CH5-SW1 2. Connect the UI to Code https://developer.apple.com/library/prerelease/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/Lesson3.html#//apple_ref/doc/uid/TP40015214-CH22-SW1 3. Work with View Controllers https://developer.apple.com/library/prerelease/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/Lesson4.html#//apple_ref/doc/uid/TP40015214-CH6-SW1 4. Implement a Custom Control https://d...

Official Android Apps Development Tutorial

Image
- A. BUILDING YOUR FIRST APP 0) Introduction https://developer.android.com/training/basics/firstapp/index.html 1) Creating an Android Project https://developer.android.com/training/basics/firstapp/creating-project.html 2) Running your app https://developer.android.com/training/basics/firstapp/running-app.html 3) Building a Simple User Interface https://developer.android.com/training/basics/firstapp/building-ui.html 4) Starting another Activity https://developer.android.com/training/basics/firstapp/starting-activity.html B. ADDING THE ACTION BAR 0) Introduction https://developer.android.com/training/basics/actionbar/index.html 1) Setting Up the Action Bar https://developer.android.com/training/basics/actionbar/setting-up.html 2) Adding Action Buttons https://developer.android.com/training/basics/actionbar/adding-buttons.html 3) Styling the Action Bar https://developer.android.com/training/basics/actionbar/styling.html 4) Overlaying the Action Bar htt...

iOS Swift Basic Tutorial

Image
- Tutorials from RayWenderlich.com . 1)  http://www.raywenderlich.com/75601/learn-to-code-ios-apps-with-swift-tutorial-1 2)  http://www.raywenderlich.com/75919/learn-to-code-ios-apps-with-swift-tutorial-2 3)  http://www.raywenderlich.com/76044/learn-to-code-ios-apps-with-swift-tutorial-3 4)  http://www.raywenderlich.com/77176/learn-to-code-ios-apps-with-swift-tutorial-4 5)  http://www.raywenderlich.com/78264/learn-to-code-ios-apps-with-swift-tutorial-5 -

UIWebView example using swift in ios

Image
- UIWebView object is used the load and display the web content into your application, safari browser is the primary example for  ios webview. for more reference you can go through  apple documentation for uiwebview . Open the Xcode, create new project and select the Single View Application template, In the next screen, enter the Product Name as “UIWebView Example”, then enter the company identifier details. Select Swift in Language field and Universal in Devices option, Then press next and create the project. Adding UIWebView to View We can add the UIWebView to View using two methods, first one is adding the uiwebview into storyboard and another one is programatically create uiwebview and adding into the view. first we will add the uiwebview into storyboard viewcontroller. Open the Main.storyboard file, then at the right bottom of the Xcode you can find ios webview object in the utility area, drag and drop the uiwebview into storyboa...