Created
July 26, 2018 13:27
-
-
Save CibelePaulinoAndrade/7693241124a38478d7105db30ded278d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class ViewController: UIViewController { | |
@IBOutlet weak var dragTextView: UITextView! | |
@IBOutlet weak var dropTextView: UITextView! | |
@IBOutlet weak var dragImageView: UIImageView! | |
@IBOutlet weak var dropImageView: UIImageView! | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
dropTextView.layer.borderWidth = 1 | |
dropTextView.layer.borderColor = UIColor.lightGray.cgColor | |
dropImageView.layer.borderWidth = 1 | |
dropImageView.layer.borderColor = UIColor.lightGray.cgColor | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment