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
RATreeView does not handle the new UITableViewStyle UITableViewStyleInsetGrouped in the method below and the default is not handled.
+ (RATreeViewStyle)treeViewStyleForTableViewStyle:(UITableViewStyle)tableViewStyle { switch (tableViewStyle) { case UITableViewStylePlain: return RATreeViewStylePlain; case UITableViewStyleGrouped: return RATreeViewStyleGrouped; } }
and therefore compilation fails as control may reach end of non-void function.
The text was updated successfully, but these errors were encountered:
pod 'RATreeView', :git => 'https://github.com/mgfjxxiexiaolong/RATreeView' 可以暂时先用我修改的, 估计作者体验生活去了,没时间维护了,简单的加了default:
pod 'RATreeView', :git => 'https://github.com/mgfjxxiexiaolong/RATreeView'
default:
Sorry, something went wrong.
No branches or pull requests
RATreeView does not handle the new UITableViewStyle UITableViewStyleInsetGrouped in the method below and the default is not handled.
and therefore compilation fails as control may reach end of non-void function.
The text was updated successfully, but these errors were encountered: