Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created February 19, 2018 17:09
Show Gist options
  • Save azamsharp/a494087f47acf5fedfb8015cc7411c71 to your computer and use it in GitHub Desktop.
Save azamsharp/a494087f47acf5fedfb8015cc7411c71 to your computer and use it in GitHub Desktop.
import Foundation
import UIKit
extension UIButton {
static func buttonForAddingAnnotation() -> UIButton {
let addFloodButton = UIButton(frame: CGRect.zero)
addFloodButton.translatesAutoresizingMaskIntoConstraints = false
addFloodButton.setImage(UIImage(named: "plus-image"), for: .normal)
return addFloodButton
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment