We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
_灰常感谢作者,解决了我的燃眉之急。
说一下我用demo时遇到的坑,希望对大家有所帮助
1,父类cell和子类cell(就算父类cell和子类cell显示的内容一样) 一定要是同一个类,不然点击的时候会crash。 2,如果做了分页加载,MSSTableView中- (NSMutableDictionary *)expandableCells这个方法要修改:
(NSMutableDictionary *)expandableCells { NSInteger numberOfSections = [self.MSSTableViewDelegate numberOfSectionsInTableView:self];
if (_expandableCells.count< numberOfSections) { _expandableCells = [NSMutableDictionary dictionary];
for (NSInteger section = 0; section < numberOfSections; section++) {
3,如果需要刷新tableView ,调用MSSTableView中的refreshData 方法。
The text was updated successfully, but these errors were encountered:
看他这样的写法不卡顿吗?
Sorry, something went wrong.
No branches or pull requests
_灰常感谢作者,解决了我的燃眉之急。
说一下我用demo时遇到的坑,希望对大家有所帮助
1,父类cell和子类cell(就算父类cell和子类cell显示的内容一样) 一定要是同一个类,不然点击的时候会crash。
2,如果做了分页加载,MSSTableView中- (NSMutableDictionary *)expandableCells这个方法要修改:
(NSMutableDictionary *)expandableCells
{
NSInteger numberOfSections = [self.MSSTableViewDelegate numberOfSectionsInTableView:self];
if (_expandableCells.count< numberOfSections)
{
_expandableCells = [NSMutableDictionary dictionary];
3,如果需要刷新tableView ,调用MSSTableView中的refreshData 方法。
The text was updated successfully, but these errors were encountered: