gpt4 book ai didi

iphone - 将 View 添加到操作表中

转载 作者:行者123 更新时间:2023-12-03 19:31:12 25 4
gpt4 key购买 nike

我可以将自定义 UIViewController 添加到 ActionSheet 中吗?

谢谢

最佳答案

终于我找到了它...我在 UIActionSheet 中添加了一个 UIViewController 子类的 View 。我在单独的文件中创建了一个 View (使用 xib)。

UIActionSheet *asheet = [[UIActionSheet alloc] init];
[asheet showInView:self.view];
[asheet setFrame:CGRectMake(0, 230, 320, 230)];


CustomView *innerView = [[CustomView alloc] initWithNibName:@"CustomView" bundle:nil];
innerView.view.frame = CGRectMake(0, 10, 320, 210);
[asheet addSubview:innerView.view];
//[asheet addSubview:innerView];

[innerView release];
[asheet release];

关于iphone - 将 View 添加到操作表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5389925/

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