Skip to content

Commit

Permalink
view controllers
Browse files Browse the repository at this point in the history
  • Loading branch information
myselfHimanshu committed Jul 1, 2018
1 parent 98e7e23 commit 47414f3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Binary file not shown.
17 changes: 15 additions & 2 deletions singleTemplates/UIKIT-step2/UIKIT-step2/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,23 @@ class ViewController: UIViewController {
}

@IBAction func experiment(_ sender : UIButton){
/*let image = UIImage()

//Image Picker Controller
/*
let controller = UIImagePickerController()
present(controller, animated: true, completion: nil)
*/

//Activity View Controller
/*
let image = UIImage()
let controller = UIActivityViewController(activityItems: [image], applicationActivities: nil)

present(controller, animated: true, completion: nil)
*/
*/

//Alert View Controller
/*
let controller = UIAlertController()

controller.title = "This is an ALERT!!!"
Expand All @@ -30,6 +42,7 @@ class ViewController: UIViewController {
}))
present(controller, animated: true, completion: nil)
//dismiss(animated: true, completion: nil)
*/

}

Expand Down

0 comments on commit 47414f3

Please sign in to comment.