Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是他 iphone 开发的新手。我想知道是否有任何方法可以将视图添加到 self.view 而不将其作为参数传递。有人可以建议我一种方法吗?
这很简单。参数只不过是对它的引用。因此,如果您对此有参考,则可以。因此,声明对要添加为子视图的视图的引用。然后在方法中你可以调用方法[self.view addSubView:<object>.referencedView];
[self.view addSubView:<object>.referencedView];
不,这是不可能的。如果您想向 self.view 添加视图,则必须将其作为参数传递。
如果您不想通过,那么您的库应该了解您的 viewController,并且应该将子视图添加到 viewController.view。