gpt4 book ai didi

ios - 带有 nib 文件的 Storyboard 中的 UIViewController

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:43:54 24 4
gpt4 key购买 nike

你好,请问我是否可以在故​​事板中将 xib 与我的 UIViewController 混合使用?就像他们在文件所有者中共享一个 Controller 一样,因为我打算通过使用 nib 作为扩展 View 来创建可扩展 View ,并且我想将一个值从 nib 文件传递​​到 Storyboard 中的 UIViewController。谢谢。

最佳答案

我不建议您将 Storyboard中的 xib 和 View Controller 混合在一起并将它们 Hook 在一起。如果您想将 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com