AlexBarinov/UIBubbleTableView

UIBubbleTableView 64-bit iPhone Issue

Closed this issue · 1 comments

Cells are not displayed when using "UIBubbleTableView"' and testing the app in 64-bit iPhone/Simulator.

The issue was because "UIBubbleTableView"'s "heightForRowAtIndexPath" delegate method is written like this :
"- (float)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath"

and it s*cks because Xcode gives out a warning (and no one cares about it).
Saying that the method must be written like this :
"- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath"

After fixing this s*cking warning, the cells were given proper height and were displayed correctly.

It ruined more than 4 hours of my productive time to find a fix for it.

Probably, i should've searched it in Stack Overflow first instead of debugging for so long hours and should've found this :
http://stackoverflow.com/a/21210006/1222674

I am not willing to give a PR to fix this simple s*ucker.

Only Logging it here to save someone else's(like me) time.

The devil is in the detail.
Answer is in the question itself.