Mssing返回函数预期返回' UITableViewCell'

时间:2016-09-10 06:31:00

标签: ios swift uitableview realm

在SO中可能会有类似的问题,但没有帮助我实现我的结果,因此最终在这里问。

情景

我有一个ViewController(HomeViewController)。在我的HomeController中,我有一个带有tableview的子视图。此子视图部分可见,用户可以将其平移以显示Tableview数据。 Tableview将显示消息,照片,便笺和事件等通知。我的应用程序是仅限群聊的应用程序。因此,这些消息,照片,便笺和事件将根据组显示。一个小组只会显示25条消息,8张照片,2个笔记和1个活动详情。为了显示消息,我创建了一个TableviewCell并将其注册到HomeViewController内的Tableview,就像这样

var notifications : NotificationsView!
notifications.frame = CGRectMake(0, -self.view.frame.height + 175, self.view.frame.size.width, self.view.frame.size.height)
        notifications._tableview.dataSource = self
        notifications._tableview.delegate = self
        notifications._tableview.registerNib(UINib(nibName: "TimelineCell", bundle: nil), forCellReuseIdentifier: "timelinecell")
        notifications._tableview.registerNib(UINib(nibName: "PhotosCell",   bundle: nil), forCellReuseIdentifier: "photos")
        notifications._tableview.registerNib(UINib(nibName: "NotesCell",    bundle: nil), forCellReuseIdentifier: "notes")
        notifications._tableview.registerNib(UINib(nibName: "CalendarCell", bundle: nil), forCellReuseIdentifier: "calendar")

我的模型类看起来像这样

class TimelineModal : Object {
    dynamic var groupID         = ""
    dynamic var groupName       = ""
    let messages        =   List<TimelineGroupMessages>()
    let photos          =   List<TimelineGroupPhotos>()
    let notes           =   List<TimelineGroupNotes>()
    let calendarDetails =   List<TimelineGroupCalendar>()

    override class func primaryKey() -> String? { return "groupID"  }

}

class TimelineGroupMessages : Object {

    dynamic var message         = ""
    dynamic var userName        = ""
    dynamic var messagetype     = ""
}

class TimelineGroupPhotos : Object {

    dynamic var photo           = ""
}

class TimelineGroupNotes : Object {

    dynamic var noteTitle       = ""

}

class TimelineGroupCalendar : Object {

    dynamic var calendarEventDate   = ""
    dynamic var calendarEventTitle   = ""

}

Tableview中的数据将是这样一种方式,即每个组的消息(25)首先显示照片(8),然后是Notes(2),最后是事件(1),并且将再次显示相同的格式化数据另一组。

为了显示数据,来自领域的数据在viewWillAppear()

上获取
 private var numberofRowsforTimeline : Int = 0
    private var realmdata : Results<TimelineModal>!
    private var groupsCount : Int = 0
    private var messagesCount : Int = 0
    private var photosCount : Int = 0
    private var notesCount : Int = 0
    private var eventsCount : Int = 0

 private func LoadDatafromRealm()
    {
let realm = try! Realm()
        let realmDbData = realm.objects(TimelineModal)
        print("Data : \(realmDbData)")
        groupsCount = realmDbData.count
        let messages_Count  : Int = Int(realm.objects(TimelineGroupMessages).count)
        let photos_Count    : Int = Int(realm.objects(TimelineGroupPhotos).count)
        let notes_Count     : Int = Int(realm.objects(TimelineGroupNotes).count)
        let events_Count    : Int = Int(realm.objects(TimelineGroupCalendar).count)
        self.realmdata = realmDbData 

        numberofRowsforTimeline += messages_Count + photos_Count + notes_Count + events_Count

}

以下是我收到错误的代码

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return numberofRowsforTimeline
    }

    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

        var cell : UITableViewCell!
    // let cellMessages : TimelineCell = tableView.dequeueReusableCellWithIdentifier("timelinecell", forIndexPath: indexPath) as! TimelineCell
     //let cellPhotos      : PhotosCell    = tableView.dequeueReusableCellWithIdentifier("photos", forIndexPath: indexPath)         as! PhotosCell
     //let cellNotes       : NotesCell     = tableView.dequeueReusableCellWithIdentifier("notes", forIndexPath: indexPath)          as! NotesCell
     //let cellCalendar    : CalendarCell  = tableView.dequeueReusableCellWithIdentifier("calendar", forIndexPath: indexPath)       as! CalendarCell

        for __data in self.realmdata
        {
            if __data.messages.count > 0
            {
               let cellMessages : TimelineCell = tableView.dequeueReusableCellWithIdentifier("timelinecell", forIndexPath: indexPath) as! TimelineCell

                for x in 0..<__data.messages.count - 1
                    {
                        cellMessages.topConstraintforgroupNameLabel.constant = heightConstraints.topConstraintForRowZero.rawValue
                        cellMessages.topConstraintfortabNameLabel.constant = heightConstraints.topConstraintForRowZero.rawValue
                        cellMessages.lblGroupID.text = __data.groupID
                        cellMessages.lblGroupID.hidden = true
                        cellMessages.lblGroupName.text = __data.groupName
                        cellMessages.lblmessage.text = __data.messages[x].message
                        return cellMessages
                    }

            }
            else if __data.photos.count > 0
            {
                let cellPhotos : PhotosCell    = tableView.dequeueReusableCellWithIdentifier("photos", forIndexPath: indexPath)  as! PhotosCell

                for p in 0..<__data.photos.count - 1
                {
                    cellPhotos.imgPhoto1_photos.image = UIImage(imageLiteral: __data.photos[p].photo)
                    return cellPhotos
                }
                             }
            else if __data.notes.count > 0
            {
                let cellNotes : NotesCell     = tableView.dequeueReusableCellWithIdentifier("notes", forIndexPath: indexPath) as! NotesCell

                for n in 0..<__data.notes.count - 1
                {
                    cellNotes.lblNoteName1.text = __data.notes[n].noteTitle
                   return cellNotes
                }
                            }
            else if __data.calendarDetails.count > 0
            {
                let cellCalendar    : CalendarCell  = tableView.dequeueReusableCellWithIdentifier("calendar", forIndexPath: indexPath)       as! CalendarCell
                for c in 0..<__data.calendarDetails.count - 1
                {
                    cellCalendar.lblEventName1.text = __data.calendarDetails[c].calendarEventTitle
                 return cellCalendar
                }

            }
            else
            {
                return cell

            }
        }
} //-> Error  Mssing return in a function expected to return 'UITableViewCell'

我哪里出错了?对不起,如果我的问题太宽泛了。只是试图确保你理解我需要的东西。就是这样。救命!救命!救命啊!

注意:我尝试以不同的方式返回Cell,其中提到的错误没有发生,但Tableview具有所有单元格的相同数据。

1 个答案:

答案 0 :(得分:0)

我认为您误解了tableView委托和数据源方法是如何用于构建tableView的。特别是,cellForRowAtIndexPath方法被多次调用,每次要显示一行。 indexPath参数告诉您需要哪个部分/行。无需遍历数据 - 只需使用indexPath选择数组中的正确元素即可。循环无论如何都是徒劳的,因为第一次执行return语句时,整个函数终止 - 循环不会进入下一次迭代。

例如,以下内容应该会生成一个表格,其中每个组都有一个部分,每个部分都有行,用于显示消息,照片,备注和事件:

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return self.groupsCount // separate section for each Group
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    // locate the correct Group for the given section
    let __data = self.realmdata[section]
    // the total number of rows for this section (ie Group) is:
    // number of messages + number of photos + number of notes + number of events:
    return __data.messages.count + __data.photos.count + __data.notes.count + __data.calendarDetails.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    // locate the correct Group for the given section (using the indexPath)
    let __data = self.realmdata[indexPath.section]
    if (indexPath.row < __data.messages.count) { // first rows are the messages
        // use the indexPath.row to get the required index for the messages:
        let messageIndex = indexPath.row
        let cellMessages : TimelineCell = tableView.dequeueReusableCellWithIdentifier("timelinecell", forIndexPath: indexPath) as! TimelineCell
        cellMessages.topConstraintforgroupNameLabel.constant = heightConstraints.topConstraintForRowZero.rawValue
        cellMessages.topConstraintfortabNameLabel.constant = heightConstraints.topConstraintForRowZero.rawValue
        cellMessages.lblGroupID.text = __data.groupID
        cellMessages.lblGroupID.hidden = true
        cellMessages.lblGroupName.text = __data.groupName
        // use the index to locate the correct message text:
        cellMessages.lblmessage.text = __data.messages[messageIndex].message
        return cellMessages
    } else if (indexPath.row < __data.messages.count + __data.photos.count) { // next are the photos
        // use the indexPath.row (adjusted to account for the messages rows) to get the required index for the photos:
        let photoIndex = indexPath.row - __data.messages.count
        let cellPhotos : PhotosCell    = tableView.dequeueReusableCellWithIdentifier("photos", forIndexPath: indexPath)  as! PhotosCell
        cellPhotos.imgPhoto1_photos.image = UIImage(imageLiteral: __data.photos[photoIndex].photo)
        return cellPhotos
    } else if (indexPath.row < __data.messages.count + __data.photos.count + __data.notes.count) { // next are the notes
        let noteIndex = indexPath.row - __data.messages.count - __data.photos.count
        let cellNotes : NotesCell     = tableView.dequeueReusableCellWithIdentifier("notes", forIndexPath: indexPath) as! NotesCell
        cellNotes.lblNoteName1.text = __data.notes[noteIndex].noteTitle
        return cellNotes
    } else { // next are the Events
        let eventIndex = indexPath.row - __data.messages.count - __data.photos.count - __data.notes.count
        let cellCalendar    : CalendarCell  = tableView.dequeueReusableCellWithIdentifier("calendar", forIndexPath: indexPath)       as! CalendarCell
        cellCalendar.lblEventName1.text = __data.calendarDetails[eventIndex].calendarEventTitle
        return cellCalendar
    }
}