在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
dyld: Library not loaded: @rpath/libswiftCore.dylib Referenced from: /var/mobile/Applications/9D80DFDC-2568-4328-B0BF-6418C3702DE4/swift02_project.app/swift02_project Reason: no suitable image found. Did find: /private/var/mobile/Applications/9D80DFDC-2568-4328-B0BF-6418C3702DE4/swift02_project.app/Frameworks/libswiftCore.dylib: code signature invalid for '/private/var/mobile/Applications/9D80DFDC-2568-4328-B0BF-6418C3702DE4/swift02_project.app/Frameworks/libswiftCore.dylib' 未解决。第二次运行,就没有这个报错了。
[!] Pods written in Swift can only be integrated as frameworks; add `use_frameworks!` to your Podfile or target to opt into using it. The Swift Pod being used is: SwiftyModel 意思是说:CocoaPods在Swift里面,只能以framework的形式使用,所以要加这句话。那么这句话在哪里加呢?在Podfile里面,在写完所有的语句之后,加上这句,示例如下: platform :ios ,'8.0' pod 'SwiftyModel', '~> 0.1.0' use_frameworks! 再重新install就可以了。
报这个错的原因,我认为是因为,这个字典不想让乱七八糟的东西,成为自己的关键字。所以在后面,要加个类型说明。 func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = self.tableView!.dequeueReusableCellWithIdentifier("cell") let sectionArr:NSArray = self.dataDic.allKeys let sectionText:String = sectionArr.objectAtIndex(indexPath.section) as! String let rowArr:NSMutableArray = self.dataDic.objectForKey(sectionText) as! NSMutableArray let rowDic:NSDictionary = rowArr.objectAtIndex(indexPath.row) as! NSDictionary let cityName:String = rowDic.objectForKey("city") as! String cell?.textLabel?.text = cityName return cell! } 这样就可以了。在后面标明被取出来的数值,将会以什么样的形式显示,就可以了。
|
请发表评论