Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

imageview

  1. S

    iOS Pass GIF from tableView to viewController in Swift

    I have 3 GIFs outside the Assets folder and I'm trying to pass the data from a table view to next view controller. I have two tables, created outlet to UIImageView. ThirdView.swift contains struct: struct ThirdView { var ThirdViewArray = [String]() var Pic = [String]() }...
  2. M

    iOS take photo without editing

    Guys The following Code is what I used to take a photo display it in an imageview and save it // BUTTON CODE - (IBAction)takePhoto:(id)sender { UIImagePickerController *picker = [[UIImagePickerController alloc] init]; picker.delegate = self; picker.allowsEditing =...