Are you going to support Swift 5? I got the error:
Showing All Messages
/Pods/RATreeView/RATreeView/RATreeView/Private Files/RATreeView+Enums.m:106:1: Control may reach end of non-void function
The fix is simple:
switch (tableViewStyle) {
case UITableViewStylePlain:
return RATreeViewStylePlain;
case UITableViewStyleGrouped:
return RATreeViewStyleGrouped;
default:
return RATreeViewStylePlain;
}
Is it possible to fix? Thanks.
Are you going to support Swift 5? I got the error:
The fix is simple:
Is it possible to fix? Thanks.