UZModule提供属性controller,可通过该控制器对目标控制器进行push或者present操作。

// push
[self.viewController.navigationController pushViewController:yourcontroller animated:YES];

// present
[self.viewController presentViewController:yourcontroller animated:YES completion:nil];

相关文章: