我正在创建一个UICollectionView。用户从UIImagePicker中选择一个图像,然后将图像保存到DocumentDirectory,但现在我想将图像添加到UICollectionView。如何访问DetailViewController中的文档目录并将其添加到UICollectionView控制器中的数组?
DetailViewController(我得到并保存图片的地方):
import UIKit
class DetailViewController: UIViewController, UITextFieldDelegate, UINavigationControllerDelegate, UIImagePickerControllerDelegate {
...
@IBAction func takePicture(sender: UIBarButtonItem) {
let imagePicker = UIImagePickerController()
if UIImagePickerController.isSourceTypeAvailable(.Camera) {
imagePicker.sourceType = .Camera
} else {
imagePicker.sourceType = .PhotoLibrary
}
imagePicker.delegate = self
presentViewController(imagePicker, animated: true, completion: nil)
}
func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String: AnyObject]) {
let img = info[UIImagePickerControllerOriginalImage] as! UIImage
let data = UIImagePNGRepresentation(img)
NSUserDefaults.standardUserDefaults().setObject(data, forKey: "myImageKey")
NSUserDefaults.standardUserDefaults().synchronize()
imageView.image = img
dismissViewControllerAnimated(true, completion: nil)
}
...
override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
let key = item.itemKey
if let imgData = NSUserDefaults.standardUserDefaults().objectForKey("myImageKey") as? NSData {
imageView.image = UIImage(data: imgData)
}
//imageView.image = UIImage(data: imgData)
}
...
UICollectionView:
import UIKit
class PhotosViewController: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource {
var collectionView: UICollectionView!
var imageStore: ImageStore!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
layout.sectionInset = UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10)
layout.itemSize = CGSize(width: 300, height: 490)
collectionView = UICollectionView(frame: self.view.frame, collectionViewLayout: layout)
collectionView.dataSource = self
collectionView.delegate = self
collectionView!.registerClass(FoodCell.self, forCellWithReuseIdentifier: "Cell")
collectionView.backgroundColor = UIColor.whiteColor()
self.view.addSubview(collectionView)
}
override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
}
func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return images.count
}
var images: [UIImage] = [
]
images.append(UIImage(named: "" )!)
func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCellWithReuseIdentifier("Cell", forIndexPath: indexPath) as! FoodCell
cell.textLabel.text = ""
cell.imageView.image = images[indexPath.row]
return cell
}
func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath)
{
print("User tapped on item \(indexPath.row)")
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
答案 0 :(得分:0)
您可以使用delegate
机制将已挑选的图像从DetailVC传递到PhotosViewController
。如果您是新来的代表,这是一个粗略的实现。
protocol DetailViewControllerDelegate{
func didPickImage(image:UIImage)
}
class DetailViewController: UIViewController{
var delegate: DetailViewControllerDelegate?
}
class PhotosViewController:DetailViewControllerDelegate{
func didPickImage(image:UIImage){
imagesArray.append(image)
collectionView.reloadData()
}
}
//not sure how you are navigating to DetailVC from PhotosVC
// before doing that set the delegate like
detailVC.delegate = self