草庐IT

Optional类

全部标签

ios - 条件绑定(bind)的初始化程序必须具有 Optional 类型,而不是 'AVAudioInputNode'

导致上述错误的原因是什么以及如何解决?funccancelRecording(){audioEngine.stop()ifletnode=audioEngine.inputNode{node.removeTap(onBus:0)}recognitionTask?.cancel()} 最佳答案 编译器告诉您不能使用iflet,因为它完全没有必要。您没有任何可选项要解包:audioEngine不是可选的,inputNode属性也不是可选的。iflet专门用于解包可选值。如果你想创建一个名为node的新常量,只需这样做:ifletnode

ios - Swift - 获取国家列表 -> fatal error : Can't unwrap Optional. 无

我几天前问过如何在Swift中获取国家列表,你解决了它的第一部分(这里:Swift-Getlistofcountries),但我无法获得最终的国家列表,因为它给出了一个错误:varcountries:NSMutableArray=NSMutableArray()countries=NSMutableArray(capacity:(NSLocale.ISOCountryCodes().count))forcountryCode:AnyObjectinNSLocale.ISOCountryCodes(){letdictionary:NSDictionary=NSDictionary(obj

uitableview - swift - 错误 : unexpectedly found nil while unwrapping an optional value

我一直在用Swift制作应用程序,但我的TableViewController类中一直出现错误。我找不到任何方法来解决此问题并不断收到此错误:overridefunctableView(tableView:UITableView?,cellForRowAtIndexPathindexPath:NSIndexPath!)->UITableViewCell!{letcell:TextTableViewCell=tableView!.dequeueReusableCellWithIdentifier("Cell",forIndexPath:indexPath!)asTextTableView

swift - 从 Parse.com 检索 PFFile 时为 "unexpectedly found nil while unwrapping an Optional value"

我在检索存储在Parse.com中的PFFile时遇到问题letuser=PFUser.currentUser()letuserImageFile=user["profileImage"]asPFFileuserImageFile.getDataInBackgroundWithBlock{(imageData:NSData!,error:NSError!)->Voidiniferror==nil{ifimageData!=nil{letimage=UIImage(data:imageData)self.profileImage.image=image}}}错误从第二行开始。“profi

ios - 在 Swift ios 中使用 vImageBuffer_initWithCGImage 时出现 "fatal error: unexpectedly found nil while unwrapping an Optional value"

我正在使用SwiftiOS8并尝试将UIImage转换为vImage_Buffer以使用Accelerate.framework执行操作。我正在尝试使用vImageBuffer_initWithCGImage进行转换,这是我尝试过的代码:funcinitvImageBufferwithUIImage(image:UIImage)->vImage_Buffer{varCGImg:CGImageRef=sunset.CGImagevarinProvider:CGDataProviderRef=CGImageGetDataProvider(CGImg)varinBitmapData:CFDa

swift - 在 swift 中解析 JSON 抛出 'fatal error: unexpectedly found nil while unwrapping an Optional value'

我正在尝试获取json对象,但无法获取这是我的代码funcloadShots(completion:((AnyObject)->Void)!){varurlString="http://ip.jsontest.com/";letsession=NSURLSession.sharedSession()letshotsUrl=NSURL(string:urlString)vartask=session.dataTaskWithURL(shotsUrl!){(data,response,error)->Voidiniferror!=nil{println(error.localizedDes

objective-c - swift 1.2 : Implement optional property from Objc protocol

只是尝试开始使用Swift并在升级到Swift1.2时遇到以下问题:@protocolMyObjcProtocol@optional@property(copy)NSString*optionalString;-(void)optionalMethod;@end...classMySwiftClass:NSObject{}extensionMySwiftClass:MyObjcProtocol{varoptionalString:NSString{get{return"Foo"}set(newValue){NSLog("Whatever")}}//Noproblemherefuncop

swift - "Operand of postfix ' ! ' should have optional type; type is ' CGVector '"

我在Swift中使用Xcode6时收到错误消息“Operandofpostfix'!'应该有可选类型;类型是“CGVector””在我的代码中说我必须删除一个!但是,当我这样做时,出现错误“可选类型‘CGVector的值?’”未展开;您是否打算使用“!”或者'?'?”这迫使我再次添加它。我不确定该怎么做,这是产生错误的行,问题出在属性“velocity”上:if(Utils.getNetVec(physicsBody?.velocity!,gravity:gravity,signs:true).dy>CGFloat(0)){我怎样才能解决这个问题? 最佳答案

ios - fatal error : unexpectedly found nil while unwrapping an Optional value using AVAudio

我有两个项目,使用相同的代码,但下面一行:player=AVAudioPlayer(contentsOfURL:NSURL(string:fileLocation),error:&error)仅在一个项目中返回此错误:fatalerror:unexpectedlyfoundnilunwrappinganOptionalvalue另一个项目运行没有错误。我正在尝试播放声音。importUIKitimportAVFoundationclassViewController:UIViewController{varplayer:AVAudioPlayer=AVAudioPlayer()over

swift - SceneKit—— fatal error : unexpectedly found nil while unwrapping an Optional value when getting child node

所以我试图在我的SceneKit/Swift项目中使用3D对象(.dae1.4,使用Cinema4Dr13导出)。我留下了提供的代码并进行了更改:letscene=SCNScene(named:"art.scnassets/ship.dae")!适合我的:letscene=SCNScene(named:"art.scnassets/pyramid.dae")!我确实也将文件导入到它应该位于的项目中(在art.scnassets中)。我可以像默认飞船一样预览文件,所以这应该是正确的。我也改了:letship=scene.rootNode.childNodeWithName("ship",