我找到了解决方案,但它不在 Swift: Converting UIImageView to UIImage中 我甚至通过使用UnsafeMutablePointed尝试在Swift中实现它而变得流氓并且没有运气. 但是,Swift中的指针通常是不受欢迎的,如果有
我甚至通过使用UnsafeMutablePointed尝试在Swift中实现它而变得流氓并且没有运气.
但是,Swift中的指针通常是不受欢迎的,如果有一个简单的单行解决方案,这将是很好的!
示例代码:
let test1:UIImageView = UIImageView(image: UIImage(named: "test")) let test2 = test1.image // This fails with an error: Instance member ‘test1’ cannot be used on type ‘viewController’我强烈建议您了解Objective-C,因为这将有助于您在iOS(Cocoa-Touch)中找到如何做的事情.
解决方案与Objective-C相同:
imageView.image