-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCameraViewController.swift
86 lines (59 loc) · 2.29 KB
/
CameraViewController.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//
// CameraViewController.swift
// Parstagram
//
// Created by Erin DeLong on 5/6/21.
//
import UIKit
import AlamofireImage
import Parse
class CameraViewController: UIViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate {
@IBOutlet weak var imageView: UIImageView!
@IBOutlet weak var commentField: UITextField!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
@IBAction func onSubmitButton(_ sender: Any) {
let post = PFObject(className: "Posts")
post["caption"] = commentField.text
post["author"] = PFUser.current()!
let imageData = imageView.image!.pngData()
let file = PFFileObject(data: imageData!)
post["image"] = file
post.saveInBackground { (success, error) in
if (success) {
self.dismiss(animated: true, completion: nil)
print("saved!")
} else {
print("error!")
}
}
}
@IBAction func onCameraButton(_ sender: Any) {
let picker = UIImagePickerController()
picker.delegate = self
picker.allowsEditing = true
if UIImagePickerController.isSourceTypeAvailable(.camera) {
picker.sourceType = .camera
} else {
picker.sourceType = .photoLibrary
}
present(picker, animated: true, completion: nil)
}
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) {
let image = info[.editedImage] as! UIImage
let size = CGSize(width: 300, height: 300)
let scaledImage = image.af_imageScaled(to: size)
imageView.image = scaledImage
dismiss(animated: true, completion: nil)
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using segue.destination.
// Pass the selected object to the new view controller.
}
*/
}
}