问题摘要:当UITableViewCell的UITableViewCell的高度从UITextView编辑它的文本时,当UITableView中有很多单元格时,它会崩溃.使用iOS 8自定义单元格.

长问题:我已经成功实现,所以我可以动态地使用iOS 8自定义单元格进入单元格UITextView的文本,并改变单元格高度而不失去焦点(firstReponder).但是,如果tableView太大(行数太多),则会崩溃.这是我的堆栈跟踪:

Terminating app due to uncaught exception 'NSinvalidargumentexception',reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil'
*** First throw call stack:
(
0   CoreFoundation                      0x000000010b3b3d85 __exceptionPreprocess + 165
1   libobjc.A.dylib                     0x000000010b9cbdeb objc_exception_throw + 48
2   CoreFoundation                      0x000000010b274cc5 -[__NSArrayM insertObject:atIndex:] + 901
3   UIKit                               0x0000000108b05439 __46-[UITableView _updateWithItems:updateSupport:]_block_invoke1029 + 180
4   UIKit                               0x0000000108a7e838 +[UIView(UIViewAnimationWithBlocks) _setupAnimationWithDuration:delay:view:options:factory:animations:start:animationStateGenerator:completion:] + 582
5   UIKit                               0x0000000108a7ec6d +[UIView(UIViewAnimationWithBlocks) animateWithDuration:delay:options:animations:completion:] + 105
6   UIKit                               0x0000000108b05048 -[UITableView _updateWithItems:updateSupport:] + 4590
7   UIKit                               0x0000000108afd5a0 -[UITableView _endCellAnimationsWithContext:] + 15360
8   Test RYM                            0x0000000107e6a173 _TFE8Test_RYMCSo11UITableView31reloadDataAnimatedKeepingOffsetfT_T_ + 163
9   Test RYM                            0x0000000107e6a242 _TToFE8Test_RYMCSo11UITableView31reloadDataAnimatedKeepingOffsetfT_T_ + 34
10  Test RYM                            0x0000000107dcda90 _TFC8Test_RYM20AgendaViewController19cellHeightDidUpdatefTCSo11NSIndexPath6heightV12CoreGraphics7CGFloat_T_ + 144
11  Test RYM                            0x0000000107dcdb04 _TToFC8Test_RYM20AgendaViewController19cellHeightDidUpdatefTCSo11NSIndexPath6heightV12CoreGraphics7CGFloat_T_ + 68
12  Test RYM                            0x0000000107e725cb _TFC8Test_RYM27AgendaDecisionTableViewCell20updateTextViewHeightfT_T_ + 907
13  Test RYM                            0x0000000107e731fa _TFC8Test_RYM27AgendaDecisionTableViewCell17textViewDidChangefCSo10UITextViewT_ + 42

并导致它的代码:

// In UITableView extension
func reloadDataAnimatedKeepingOffset() {
    //let offset = contentOffset
    //UIView.setAnimationsEnabled(false)
    beginUpdates()
    endUpdates()
    //UIView.setAnimationsEnabled(true)
    //layoutIfNeeded()
    //contentOffset = offset
}

// In a self-sizing UITableViewCell subclass
func updateTextViewHeight() {
    let size = decisionTextView.bounds.size
    let newSize = decisionTextView.sizeThatFits(CGSize(width: size.width,height: CGFloat.max))
    let newHeight = newSize.height
    if size.height != newHeight {
        textViewHeightConstraint.constant = newHeight
        agendaViewController?.cellHeightDidUpdate(indexPath!,height: newSize.height)
    }
}

// In the ViewController managing the tableView
public func cellHeightDidUpdate(indexPath: NSIndexPath,height: CGFloat) {
    updateHelperAlphas()
    tableView?.reloadDataAnimatedKeepingOffset()
}

它在调用endUpdates()时崩溃.我已经尝试删除tableView:estimateHeightForRowAtIndexPath:方法在UITableView insertRowsAtIndexPaths throwing __NSArrayM insertObject:atIndex:’object cannot be nil’ error中没有成功.

它似乎只发生在列表很长时间.

编辑:我使用的更多方法:

public func tableView(tableView: UITableView,estimatedHeightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
    return 48.0
}

public func tableView(tableView: UITableView,heightForHeaderInSection section: Int) -> CGFloat {
    if (section == 0) {
        return 0
    }
    else {
        let currentSectionIsEmpty = sectionIsEmpty(section)
        if ((!isInEditProtocolMode && isProtocolMode) || isPrevIoUsProtocolMode) && currentSectionIsEmpty {
            return 0
        }
        let subSection = sectionHelper.subSectionForSection(section)
        let isProtocolTopSection = isProtocolMode && subSection == 0
        if (isProtocolTopSection) {
            return UITableViewAutomaticDimension
        }
        else {
            return agendaHeaderHeight
        }
    }
}

public func tableView(tableView: UITableView,estimatedHeightForHeaderInSection section: Int) -> CGFloat {
    if (section == 0) {
        return 0
    }
    else {
        let subSection = sectionHelper.subSectionForSection(section)
        let isProtocolTopSection = isProtocolMode && subSection == 0
        if (isProtocolTopSection) {
            return protocolAgendaHeaderHeight
        }
        else {
            return agendaHeaderHeight
        }
    }
}

public override func viewDidLoad() {
    super.viewDidLoad()
    tableView.rowHeight = UITableViewAutomaticDimension
}

EDIT2:
这几乎是同样的问题. tableView crashes on end up with more than 16 items然而,我无法消除细胞高度的估计,因为这破坏了我的自动调整细胞图的动态高度.

编辑3:
尝试(从下面的评论)使用CATransaction.setdisableActions(_)和setContentOffset(_:动画:)没有任何帮助.这似乎与此无关,除了beginUpdates()和endUpdates()都没有帮助. reloadDataAnimatedKeepingOffset()似乎只被调用一次,没有其他reloadData似乎被调用在同一时间.将估计高度设置为1而不是0也没有帮助.它奇怪地显示零标题而不是高度1.

编辑4:
根据请求,我的numberOrRowsInSection和cellForRowAtIndexPath方法(有点复杂):

public func tableView(tableView: UITableView,numberOfRowsInSection section: Int) -> Int
{
    let mainSection = sectionHelper.mainSectionForSection(section)
    let subSection = sectionHelper.subSectionForSection(section)


    let isHeaderSection = subSection <= 0
    if isHeaderSection {
        return isProtocolMode ? 0 : cellIdSectionList[0].count
    }

    let rowType = sectionHelper.rowTypeForSection(section)

    let agenda = agendaForSection(section)

    switch rowType {
    case .NoteRow:
        return mainSectionShowingPlaceholderNewNoteCell == mainSection || !agenda.protocolString.isEmpty ? 1 : 0
    case .ActionRow:
        let count = max(0,agenda.actionListCount())
        return count
    case .DecisionRow:
        var count = agenda.decisions.count ?? 0
        count = max(0,count)
        count = indexPathShowingPlaceholderNewDecisionCell?.section == section ? count+1 : count
        return count
    default:
        return 0
    }
}

public func tableView(tableView: UITableView,cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
    let row = indexPath.row
    let section = indexPath.section
    let cellId = cellIdForIndexPath(indexPath)

    let cell = tableView.dequeueReusableCellWithIdentifier(cellId,forIndexPath: indexPath)
    let allowEditing = (isInEditProtocolMode || !isProtocolMode) && !isPrevIoUsProtocolMode

    if let titleCell = cell as? StandardTitleTableViewCell {
        titleCell.setup(agendaForSection(section),meeting:selectedMeeting!,indexPath:indexPath)
        titleCell.delegate = self
    }
    if let descriptionCell = cell as? StandardDescriptionTableViewCell {
        descriptionCell.setup(agendaForSection(section),indexPath: indexPath,forceExpand: hasExpandedDescriptionCellView)
        descriptionCell.delegate = self
    }

    if let noteCell = cell as? AgendaNotesTableViewCell {
        noteCell.setup(agendaForSection(section),allowEditing:allowEditing)
        noteCell.agendaViewController = self
    }

    if let decisionCell = cell as? AgendaDecisionTableViewCell {
        let decisionList = agendaForSection(section).decisions
        let isNewDecisionCell = row >= decisionList.count
        if !isNewDecisionCell {
            let decision = decisionList[row]
            decisionCell.setup(decision,allowEditing: allowEditing)
        }
        else {
            decisionCell.setup(newDecisionToAdd!,allowEditing: allowEditing)
        }
        decisionCell.agendaViewController = self
    }

    if let actionCell = cell as? StandardTableViewCell,let actionList = agendaForSection(section).actionList {
            let action = actionList.actions[row]
            actionCell.setupAsActionListCell(action:action,delegate: self)
    }

    if let textCell = cell as? MeetingTextTableViewCell {
        var placeholderText = ""
        if indexPathIsActionTextPlaceholderCell(indexPath) {
            placeholderText = __("agenda.noActions.text")
        }
        else if indexPathIsDecisionTextPlaceholderCell(indexPath) {
            placeholderText = __("agenda.noDecisions.text")
        }
        textCell.setup(placeholderText)
    }

    return cell
}

public func tableView(tableView: UITableView,viewForHeaderInSection section: Int) -> UIView?
{
    if (section == 0) {
        return nil
    }
    let subSection = sectionHelper.subSectionForSection(section)
    let cellId = isProtocolMode && subSection == 0 ? protocolHeaderCellId : headerCellId
    let cell = tableView.dequeueReusableheaderfooterViewWithIdentifier(cellId)
    let agenda = agendaForSection(section)

    if let standardHeaderCell = cell as? StandardTableViewHeaderCell {
        let subSection = sectionHelper.subSectionForSection(section)

        let currentSectionIsEmpty = sectionIsEmpty(section)
        let protocolIsLocked = selectedMeeting!.protocolIsLocked
        if (isPrevIoUsProtocolMode && currentSectionIsEmpty) {
            return nil
        }
        let allowEditing = (isInEditProtocolMode || !isProtocolMode) && !isPrevIoUsProtocolMode && !protocolIsLocked
        let showRightAddButton = ((subSection == 1 && currentSectionIsEmpty) || subSection == 2 || (subSection == 3 && indexPathShowingPlaceholderNewDecisionCell?.section != section)) && allowEditing

        let headerTitle = headerTitleList[subSection]
        standardHeaderCell.setupWithText(headerTitle,section:section,showAddButton: showRightAddButton,delegate: self)
    }
    else if let protocolHeaderCell = cell as? ProtocolTableViewHeaderCell {
        let showSeparator = section > 1
        let onlyShowAttachmentIfItHaveAttachments = isPrevIoUsProtocolMode || (isProtocolMode && !isInEditProtocolMode)
        let showAttachmentIcon = !onlyShowAttachmentIfItHaveAttachments || agenda.attachments.count > 0
        protocolHeaderCell.setup(showSeparator: showSeparator,agenda: agenda,section: section,showProtocolIcon: false,showAttachmentIcon: showAttachmentIcon,delegate: self)
    }

    return cell!.wrappedInNewView()
}

// In UIView extension
func wrappedInNewView() -> UIView
{
    let view = UIView(frame: frame)
    autoresizingMask = [.FlexibleHeight,.FlexibleWidth]
    view.addSubview(self)
    return view
}

解决方法

这是关于这个iOS bug的雷达: http://openradar.appspot.com/15729686
所有我建议你要做的是取代这个:
public func tableView(tableView: UITableView,estimatedHeightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
    return 48.0
}

有了这个:

tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 48.0

如果还是崩溃了,那么也尝试去除tableView:estimatedHeightForHeaderInSection:方法

我们应该穿过我们的手指,希望这个雷达将关闭与新的iOS X

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

ios – ‘*** – [__ NSArrayM insertObject:atIndex:]:执行UITableView动画重新加载时,对象不能为nil的更多相关文章

  1. ios – UITableView和Cell Reuse

    这是我的CustomCell类的init方法解决方法如果没有要显示的图像,则必须清除图像视图:

  2. ios – fetchedResultsController.fetchedObjects.count = 0但它充满了对象

    我正在使用相当标准的fetchedResultsController实现来输出tableView.在-viewDidLoad的最后,我正在进行第一次调用:这是我的fetchedResultsController:我的tableView方法:所以,问题是:在_fetchedResultsController.fetchedobjects.count的日志中等于0,但在视觉上tableView充满了对

  3. ios – UITableView在滚动时阻止重新加载

    或者你能想象一个防止这种行为的好方法吗?解决方法抱歉,我没有足够的声誉来添加评论,因此在单独的答案中回答您的上一个问题.-performSelector:withObject:afterDelay:延迟为0.0秒不会立即执行给定的选择器,而是在当前的RunloopCycle结束后和给定的延迟之后执行它.-performSelector:withObject:添加到当前Runloop循环中并执行.这与直接调用该方法相同.因此,使用-performSelector:withObject:afterDelay:

  4. ios – 在Swift中通过标记访问UITableViewCell内部的不同视图

    我正在尝试使用swift为iOS8制作应用程序.这里的目标是制作一种新闻源.此Feed显示来自用户的帖子,其遵循特定模式.我想过使用UITableView,其中每个单元格都遵循自定义布局.当我尝试访问其中的文本标签时出现问题.我尝试通过它的标签访问它,但是当我这样做时,整个应用程序崩溃了.报告的错误是“Swift动态转换失败”,我使用以下代码访问视图:难道我做错了什么?解决方法我认为问题是标签0.所有视图都是默认值0.所以尝试另一个标签值.

  5. ios – 如何实现`prepareForReuse`?

    解决方法尝试将此添加到您的MGSwipeTableCell.m:

  6. ios – 在UITableView上轻扫以删除以使用UIPanGestureRecognizer

    我使用以下代码将UIPanGuestureRecognizer添加到整个视图中:在主视图中我有一个UITableView,它有这个代码来启用滑动删除功能:只有RUNNING1打印到日志中,并且“删除”按钮不会显示.我相信其原因是UIPanGestureRecognizer,但我不确定.如果这是正确的,我该如何解决这个问题.如果这不正确,请提供原因并解决.谢谢.解决方法从document:Ifage

  7. viewWillAppear vs Viewdidload ios

    使用iOS导航应用程序的代码时,我遇到了麻烦:我在哪里可以为UITableView设置方法“initdata”?请帮帮我.解决方法您可以根据应用程序的需求放置initData,如果您的表需要每次使用新数据加载数据,那么它应该在否则,如果表需要通过单个数据重新加载,该数据不会发生变化或者没有对数据执行任何编辑操作,则应使用

  8. ios tableView reloadRowsAtIndexPaths无效

    解决方法包裹它怎么样?希望这可以帮助.

  9. ios – 我的表视图在滚动时在SWIFT中重用所选单元格

    实例变量

  10. ios – 重新加载表动画

    因此,当用户点击我的表格中的单元格时,我实际上并没有推送到新的视图控制器,而只是重新加载该tableView中的数据.但是,我希望得到一个效果类似于我推动新视图控制器时的效果.有没有人知道我如何将旧内容从屏幕上的旧内容和新内容放到屏幕上以获取整个表格?

随机推荐

  1. iOS实现拖拽View跟随手指浮动效果

    这篇文章主要为大家详细介绍了iOS实现拖拽View跟随手指浮动,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

  2. iOS – genstrings:无法连接到输出目录en.lproj

    使用我桌面上的项目文件夹,我启动终端输入:cd然后将我的项目文件夹拖到终端,它给了我路径.然后我将这行代码粘贴到终端中找.-name*.m|xargsgenstrings-oen.lproj我在终端中收到此错误消息:genstrings:无法连接到输出目录en.lproj它多次打印这行,然后说我的项目是一个目录的路径?没有.strings文件.对我做错了什么的想法?

  3. iOS 7 UIButtonBarItem图像没有色调

    如何确保按钮图标采用全局色调?解决方法只是想将其转换为根注释,以便为“回答”复选标记提供更好的上下文,并提供更好的格式.我能想出这个!

  4. ios – 在自定义相机层的AVFoundation中自动对焦和自动曝光

    为AVFoundation定制图层相机创建精确的自动对焦和曝光的最佳方法是什么?

  5. ios – Xcode找不到Alamofire,错误:没有这样的模块’Alamofire’

    我正在尝试按照github(https://github.com/Alamofire/Alamofire#cocoapods)指令将Alamofire包含在我的Swift项目中.我创建了一个新项目,导航到项目目录并运行此命令sudogeminstallcocoapods.然后我面临以下错误:搜索后我设法通过运行此命令安装cocoapodssudogeminstall-n/usr/local/bin

  6. ios – 在没有iPhone6s或更新的情况下测试ARKit

    我在决定下载Xcode9之前.我想玩新的框架–ARKit.我知道要用ARKit运行app我需要一个带有A9芯片或更新版本的设备.不幸的是我有一个较旧的.我的问题是已经下载了新Xcode的人.在我的情况下有可能运行ARKit应用程序吗?那个或其他任何模拟器?任何想法或我将不得不购买新设备?解决方法任何iOS11设备都可以使用ARKit,但是具有高质量AR体验的全球跟踪功能需要使用A9或更高版本处理器的设备.使用iOS11测试版更新您的设备是必要的.

  7. 将iOS应用移植到Android

    我们制作了一个具有2000个目标c类的退出大型iOS应用程序.我想知道有一个最佳实践指南将其移植到Android?此外,由于我们的应用程序大量使用UINavigation和UIView控制器,我想知道在Android上有类似的模型和实现.谢谢到目前为止,guenter解决方法老实说,我认为你正在计划的只是制作难以维护的糟糕代码.我意识到这听起来像很多工作,但从长远来看它会更容易,我只是将应用程序的概念“移植”到android并从头开始编写.

  8. ios – 在Swift中覆盖Objective C类方法

    我是Swift的初学者,我正在尝试在Swift项目中使用JSONModel.我想从JSONModel覆盖方法keyMapper,但我没有找到如何覆盖模型类中的Objective-C类方法.该方法的签名是:我怎样才能做到这一点?解决方法您可以像覆盖实例方法一样执行此操作,但使用class关键字除外:

  9. ios – 在WKWebView中获取链接URL

    我想在WKWebView中获取tapped链接的url.链接采用自定义格式,可触发应用中的某些操作.例如HTTP://我的网站/帮助#深层链接对讲.我这样使用KVO:这在第一次点击链接时效果很好.但是,如果我连续两次点击相同的链接,它将不报告链接点击.是否有解决方法来解决这个问题,以便我可以检测每个点击并获取链接?任何关于这个的指针都会很棒!解决方法像这样更改addobserver在observeValue函数中,您可以获得两个值

  10. ios – 在Swift的UIView中找到UILabel

    我正在尝试在我的UIViewControllers的超级视图中找到我的UILabels.这是我的代码:这是在Objective-C中推荐的方式,但是在Swift中我只得到UIViews和CALayer.我肯定在提供给这个方法的视图中有UILabel.我错过了什么?我的UIViewController中的调用:解决方法使用函数式编程概念可以更轻松地实现这一目标.

返回
顶部