Skip to content
View licvido's full-sized avatar
Block or Report

Block or report licvido

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

  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!