您好,请问是否可以在 Storyboard 中将 xib 与 UIViewController 混合使用?就像他们在他们的文件所有者中共享一个 Controller 一样,因为我打算通过使用 nib 作为扩展 View 来创建一个可扩展 View ,并且我想将一个值从 nib 文件传递到 Storyboard 中的 UIViewController 。谢谢。
Best Answer-推荐答案 strong>
我不建议您将 Storyboard 中的 xib 和 View Controller 混合在一起并将它们连接在一起。
如果您想将 UIView 作为扩展 View 添加到您的 View Controller ,您可以执行以下操作:
// Load the first view inside our xib from main bundle
UIView *view = [[NSBundle mainBundle] loadNibNamed"nib_name" owner:self options:nil][0];
// Define new X,Y to our view
float new_x_position = 0;
float new_y_position = 400;
view.frame = CGRectMake(new_x_position, new_y_position, CGRectGetWidth(view.frame), CGRectGetHeight(view.frame));
// UILabel inside our nib, '111' is the tag we set to our UILabel
UILabel *label = (UILabel*)[view viewWithTag:111];
// Add our view to the current view as a sub view
[self.view addSubview:view];
希望我理解正确。
关于ios - 带有 nib 文件的 Storyboard 中的 UIViewController,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/21871703/
|