This repository has been archived by the owner on Mar 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added public method for scrolling UIBubbleTableView to bottom
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7a7c232
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mast - Your method doesn't work for me if the table isn't filling the screen. This is what I am using instead, I was considering modifying the codebase to use this instead, can you verify this works for you? No need for an if or any conditions to use this method.
[self setContentOffset:CGPointMake(0, (self.contentSize.height - self.bounds.size.height)) animated:animated];
7a7c232
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh wow. I was thinking how to implement this and came across this public method. Thanks. Worked like charm.