Skip to content
View licvido's full-sized avatar

Block or report licvido

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. SWIFT: Fade when changing UIImageVie... SWIFT: Fade when changing UIImageView's image
    1
    let toImage = UIImage(named:"image.png")
    2
    UIView.transitionWithView(self.imageView,
    3
                              duration:5,
    4
                              options: .TransitionCrossDissolve,
    5
                              animations: { self.imageView.image = toImage },
  2. SWIFT: UITableView sections example SWIFT: UITableView sections example
    1
    import UIKit
    2
    
                  
    3
    class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
    4
    
                  
    5
        @IBOutlet var tableView: UITableView!