I am using a tableview to display a message and i used the code below
UIView *chatView = [self bubbleView:[NSString stringWithFormat:@\"%@\", message] from:YES];
Seems to me that your table view does not have any rows or sections in yet. Two possibilities come to my mind.
numberOfRowsInSection
delegate and numberOfSectionsInTableView
so that they are not set to 0.tableview
has not yet finished loading the data.Do share your findings, so I might be able to help out further if needed.