0
は新は私がSWIFT 3.0でNSNotificationCenterを言及したコードの行の下に知っていただきたいと思います
let imageDataDict:[String: UIImage] = ["image": image]
// Post a notification
NSNotificationCenter.defaultCenter().postNotificationName(notificationName, object: nil, userInfo: imageDataDict)
// Register to receive notification in your class
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(self.showSpinningWheel(_:)), name: notificationName, object: nil)
// handle notification
func showSpinningWheel(notification: NSNotification) {
if let image = notification.userInfo?["image"] as? UIImage {
// do something with your image
}
}
これは手作業で処理する必要があると思うので、 '.tser(duringLifetimeOf:self)'の前に '.observeValues'を追加します。 – jjoelson
ええ、良い点は、私は答えを更新します – MeXx