gpt4 book ai didi

iphone - 如何在我的导航 Controller 中实现 float 窗口?

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

如何在我的导航器 Controller 中实现 float 窗口?我只知道 uialertview 可以推送一个窗口来显示一些按摩。但我想推送一个 webview 在窗口中做一些事情。谁能告诉我该怎么做?谢谢。

最佳答案

您可以子类化 UIView,使用 webview 设置它,然后将其添加到当前 View :

子类化 UIView:

- (id)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self) {

...// Code to customise your UIView can go here

}
return self;
}

然后将其添加到相关的当前 View 中:

UIViewSubClass *uiViewSubclass = [[UIViewSubClass alloc] initWithFrame:CGRectMake(x,y,width,height)];
[self.view addSubview:uiViewSubClass];
[uiViewSubClass release];

干杯,罗格

关于iphone - 如何在我的导航 Controller 中实现 float 窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4383876/

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