我使用过Lumia Imaging SDK文档中剪切的代码。我的代码中有Fileopenpicker并调用viewActivated方法。在这个方法中,我使用了lumia成像sdk BlurEffect代码,你可以找到here。没有错误,但我无法模糊我的图像。
这是我使用的完整代码:
var localNotification: UILocalNotification = UILocalNotification()
localNotification.alertAction = "Your Alarm!"
localNotification.alertBody = "Your description"
localNotification.fireDate = NSDate(timeIntervalSinceNow: 10) // your time
localNotification.soundName = UILocalNotificationDefaultSoundName
// there are more and different options
UIApplication.sharedApplication().scheduleLocalNotification(localNotification)