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
现在框架在 oc 上面必须有classPrefix 和 stuffix,这种机制下有两种情况下目前不好解决。
希望后面能够支持不规则的组件名称,比如注册url和组件名的时候以手动指定的方式或者其它方式。 @yizzuide 楼主怎么看?
The text was updated successfully, but these errors were encountered:
@shanshuiren
框架本身没有强制约束开发方式,它是可以承前启后的,意思是你可以用这样的开发方式:
旧项目控制器---跳转到--->URL组件化控制器---跳转到--->旧项目控制器
其中:
// 在旧项目控制器里,通过框架提供的获取组件方法 UIViewController *viewController = [XFUIBus openURLForGetUInterface:@"xx://xxx/xxx"]; [self.navigationController pushViewController:viewController animated:YES];
// 在模块组件的视图层里,通过普通的创建方式 LoginController *loginVC = [[LoginController alloc] init]; [self.navigationController pushViewController:loginVC animated:YES];
如是你还是想把第三方控件库、公司内部封装添加到框架的组件容器,有以下方案:
最后说一下框架不能提供不规则的原因:
Sorry, something went wrong.
No branches or pull requests
现在框架在 oc 上面必须有classPrefix 和 stuffix,这种机制下有两种情况下目前不好解决。
希望后面能够支持不规则的组件名称,比如注册url和组件名的时候以手动指定的方式或者其它方式。
@yizzuide 楼主怎么看?
The text was updated successfully, but these errors were encountered: