UITableView Empty with iOS 9 beta 5 update -
after updating xcode 7 , ios 9 beta 5 on iphone, none of uitableviews displaying data, except one. downloading information parse database, , 1 works, downloading 1 section of table, not other. other 3 table views download information, , calculate correct number of rows, nothing being displayed. tried displaying static text cells, not displaying that.
any clue of going on? don't think problem downloading parse data, displaying onto tableviews.
let cell:mychinupstableviewcell = tableview.dequeuereusablecellwithidentifier("cell") as! mychinupstableviewcell if namesarray.count > 0 { cell.namelabel.text = namesarray[indexpath.row] cell.bodytext.text = chinupsarray[indexpath.row] let count = likesarray[indexpath.row] cell.likecount.text = "♥︎ " + string(count) } return cell
it table view, still gets point across. unless missing something, in correct hierarchy here.
i added label test, , not appearing well...
this looks in view debugger. see, correctly downloaded correct amount of rows... 2 thank you's , 4+ conversations.
i can't if universal solution, in exact same scenario (tablviewcell content empty @ runtime after updating xcode 7 beta 5) solved me:
i had go through every single item inside content view (including constraints) , tick checkbox "installed" in properties inspector. wr hr checked.
Comments
Post a Comment