- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码在第一次打开 View Controller 时运行成功,但稍后刷新时出现错误:
*** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 0 beyond bounds for empty array'
*** First throw call stack:
我的代码在这里
import UIKit
class RecipeViewController: UIViewController,UITableViewDataSource,UITableViewDelegate {
@IBOutlet weak var tableview: UITableView?
@IBOutlet weak var titleLabel: UILabel?
var dataArray:NSMutableArray!
var recipeId:NSString!
var titleString:NSString!
var pagingCount:NSInteger!
var isFromSearch:Bool!
override func viewDidLoad() {
super.viewDidLoad()
titleLabel?.text = titleString as String
pagingCount = 0
self.loadMore()
}
func loadMore()
{
if (self.isFromSearch == false)
{
self.dataArray = NSMutableArray()
let connection : APIConnection = APIConnection();
MBProgressHUD.showHUDAddedTo(self.view, animated: true)
connection.startRequest(String(format:"%@getRecipeByCuisineId.php?cuisine_id=%@&page=%d&count=%@",kServerURl,recipeId,pagingCount,kRecipeCount), responseBlock: { (data :[AnyObject]!) -> Void in
let jsonResult: NSArray = data as NSArray;
if((jsonResult.valueForKey("success").boolValue) == true)
{
self.dataArray.addObjectsFromArray(jsonResult.valueForKey("recipe") as! NSMutableArray as [AnyObject])
NSLog("%d",self.dataArray.count);
self.tableview?.reloadData();
MBProgressHUD.hideHUDForView(self.view, animated: true)
}
else
{
MBProgressHUD.hideHUDForView(self.view, animated: true)
}
}) { (error : NSError!) -> Void in
MBProgressHUD.hideHUDForView(self.view, animated: true)
}
}
}
override func viewWillAppear(animated: Bool) {
//self.navigationController?.navigationBarHidden(false)
self.navigationController?.navigationBar.hidden = true
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
if ((dataArray) != nil)
{
return dataArray.count;
}
return 0;
}
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
if UIDevice.currentDevice().userInterfaceIdiom == .Pad
{
return 200;
}
else
{
return 160.0;
}
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let identifier = NSString(format:"%@%d","cell",indexPath.row)
var cell:RecipeCell? =
tableview?.dequeueReusableCellWithIdentifier(identifier as String) as? RecipeCell
if (cell == nil)
{
cell = RecipeCell(style: UITableViewCellStyle.Default, reuseIdentifier:identifier as String)
}
cell?.recipeId = dataArray.objectAtIndex(indexPath.row).valueForKey("recipeid") as? String
cell?.cuisinesId = dataArray.objectAtIndex(indexPath.row).valueForKey("cuisineid") as? String
cell?.lblRecipeName?.text = dataArray.objectAtIndex(indexPath.row).valueForKey("recipename") as? String
cell?.lblRecipeTime?.text = dataArray.objectAtIndex(indexPath.row).valueForKey("prep_time") as? String
let str = String(format:"%@%@",kDownloadCategoryImage,dataArray.objectAtIndex(indexPath.row).valueForKey("recipe_image") as! String)
let block: SDWebImageCompletionBlock! = {(image: UIImage!, error: NSError!, cacheType: SDImageCacheType, imageURL: NSURL!) -> Void in
}
cell?.recipeImage!.sd_setImageWithURL(NSURL(string: str), completed: block)
return cell!
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
let cell:RecipeCell? = tableview?.cellForRowAtIndexPath(indexPath) as? RecipeCell
let recipeDiscriptionVC = self.storyboard?.instantiateViewControllerWithIdentifier("recipeDiscriptionVC") as! RecipeDiscriptionViewController
recipeDiscriptionVC.isFromFavorite = false
recipeDiscriptionVC.recipeId = cell?.recipeId
recipeDiscriptionVC.titleString = dataArray.objectAtIndex(indexPath.row).valueForKey("recipename") as? String
recipeDiscriptionVC.recipeName = dataArray.objectAtIndex(indexPath.row).valueForKey("recipename") as? String
recipeDiscriptionVC.recipeDesc = dataArray.objectAtIndex(indexPath.row).valueForKey("recipe_desc") as? String
recipeDiscriptionVC.recipeIngredients = dataArray.objectAtIndex(indexPath.row).valueForKey("recipe_ingredients") as? String
recipeDiscriptionVC.prepTime = dataArray.objectAtIndex(indexPath.row).valueForKey("prep_time") as? String
recipeDiscriptionVC.cookingTime = dataArray.objectAtIndex(indexPath.row).valueForKey("cooking_time") as? String
recipeDiscriptionVC.method = dataArray.objectAtIndex(indexPath.row).valueForKey("Method") as? String
recipeDiscriptionVC.recipeImage = dataArray.objectAtIndex(indexPath.row).valueForKey("recipe_image") as? String
recipeDiscriptionVC.videoLink = dataArray.objectAtIndex(indexPath.row).valueForKey("video_link") as? String
recipeDiscriptionVC.ratings = dataArray.objectAtIndex(indexPath.row).valueForKey("ratings") as? String
recipeDiscriptionVC.ratingCounter = dataArray.objectAtIndex(indexPath.row).valueForKey("rating_counter") as? String
self.navigationController?.pushViewController(recipeDiscriptionVC, animated: true)
}
func scrollViewDidEndDragging(scrollView: UIScrollView, willDecelerate decelerate: Bool) {
let currentOffset = scrollView.contentOffset.y;
let maximumOffset = scrollView.contentSize.height - scrollView.frame.size.height;
if (maximumOffset - currentOffset <= 10.0) {
// For Pagging
pagingCount = pagingCount + 1
self.loadMore()
}
}
override func viewWillDisappear(animated: Bool) {
self.navigationController?.navigationBar.hidden = false
}
@IBAction func btnBackTap(sender: UIButton)
{
self.navigationController?.popViewControllerAnimated(true)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
}
*/
}
而且我认为错误区域在这里,当稍后刷新时 click item 给出空数组错误。我试过了,但我没有解决它。
func loadMore()
{
if (self.isFromSearch == false)
{
self.dataArray = NSMutableArray()
let connection : APIConnection = APIConnection();
MBProgressHUD.showHUDAddedTo(self.view, animated: true)
connection.startRequest(String(format:"%@getRecipeByCuisineId.php?cuisine_id=%@&page=%d&count=%@",kServerURl,recipeId,pagingCount,kRecipeCount), responseBlock: { (data :[AnyObject]!) -> Void in
let jsonResult: NSArray = data as NSArray;
if((jsonResult.valueForKey("success").boolValue) == true)
{
self.dataArray.addObjectsFromArray(jsonResult.valueForKey("recipe") as! NSMutableArray as [AnyObject])
NSLog("%d",self.dataArray.count);
self.tableview?.reloadData();
MBProgressHUD.hideHUDForView(self.view, animated: true)
}
else
{
MBProgressHUD.hideHUDForView(self.view, animated: true)
}
}) { (error : NSError!) -> Void in
MBProgressHUD.hideHUDForView(self.view, animated: true)
}
}
}
请帮帮我。
最佳答案
请使用 svprogresshud 而不是 mbprogresshud
关于ios - swift 2 : MBProgressHUD Refresh later Error : Terminating app due to uncaught exception 'NSRangeException' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32668351/
我正在编写一个基于核心数据的 iPhone 应用程序,而且我是 Objective-C 的新手。 我有一个正在努力解决的错误。 iPhone 模拟器不断崩溃并显示以下错误消息: 2010-03-21
当我尝试将属性应用于子字符串时,有时在以下代码中崩溃: // Dummy strings let originalString = "Some example string" let searchSu
我试图在按下主页按钮时保存数据。这是我的相关代码。 - (NSString *) saveFilePath { NSArray *path = NSSearchPathForDi
我有一个应用程序,用户报告该应用程序随机崩溃。所有崩溃都有相同的堆栈 0 CoreFoundation TAGPBIvarClearUInt32 (in SPONTAN) + 11 1 l
我在下面的方法中得到 substringWithRange:range 的异常。 我有禁用编辑的 TextView 。 我仅将文本字段用于文本选择。当我第一次选择文本时没有异常(exception),
Application Specific Information: *** Terminating app due to uncaught exception 'NSRangeException',
大家好,我是 swift 的新手,我的程序面临一个问题。我已在“let defaultStudentId = NSUserDefaults.standardUserDefaults()”中保存一些数据
我试图在从 JSON 解析对象后填充 TableView 。我想将行数设置为已解析对象的计数。 这是我的 viewDidLoad 代码: - (void)viewDidLoad { [supe
我的应用在 _storeArray 中随机崩溃。 在 viewDidLoad 中,有一个方法 [self loadUrl] 解析 xml 文件,然后添加字典 [_storeArray addObjec
我仍在边做边学,所以如果这听起来像是一个菜鸟问题,那可能就是这样。 我正在尝试遍历 NSDictionary(消息)并获取某个键的值。 当我运行这段代码时,出现以下错误“* 由于未捕获的异常‘NSRa
我有一个我无法解决的问题。我正在使用 Core Data 框架创建一个 iOS 应用程序。在我得到 NSRangeException 之前,一切都很顺利。这个异常是我在检查应用程序数据是否需要更新的函
你好我是 iPhone 编程的新手,我正在使用 EGOPhotViewer 并想通过使用此代码显示图像, for ( recipeImages in recipeImages.imgArray) {
我无法 repo 这个问题。我明白 NSRangeException 代表什么,但我不明白为什么它会在创建 nib 文件时出现。这是我从 Crashlytics 收到的崩溃报告: Fatal Exce
我尝试将 360 全景图加载到 UIViewController 的 UIWebView 中,该全景图采用 html 格式并内置于 krpano 中。当全景图打开时,一切正常。虽然过了一段时间后,我得
我正在尝试从相机捕捉图像和录制视频,但每当我用相机关闭 View 时,我都会收到此错误: Terminating app due to uncaught exception 'NSRangeExcep
应用程序在 iOS 11 更新之前运行良好。在 iOS 11 推出后,一些用户遇到了以下崩溃,但我无法在模拟器 iOS 11 中重现此问题。基于 fabric.io,并非所有 iOS 11 都经历过此
在向我的应用程序添加新的 Core Data 模型版本后,我执行了轻量级迁移,显然是成功的。迁移的文件加载正常,但在第一次尝试通过特定关系访问属性时,应用程序崩溃并显示 NSRangeExceptio
在我的应用程序中,更新表格内容后,我尝试将 UITableView 滚动到顶部一次。然而,在某些情况下,我的 table 是空的。所以我得到了以下异常: Terminating app due to
我有一个 NSRangeException 错误,该错误并不总是发生(尤其是在调试时)。它是随机出现的,我无法弄清楚它来自哪里。我有很多数组操作,因此很难以这种方式消除它。 我的问题是我是否可以从调试
我正在做教程并收到以下错误。 我的代码: #import int main (int argc, const char * argv[]) { //NSAutoreleasePool *p
我是一名优秀的程序员,十分优秀!