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.
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.