gpt4 book ai didi

ios - 如何在 iOS 中通过键盘显示 UIView

转载 作者:IT王子 更新时间:2023-10-29 05:33:03 25 4
gpt4 key购买 nike

当用户点击 inputAccessoryView 中的“附加”按钮时,我想通过键盘创建一个简单的 View 。像这样:

enter image description here

有什么简单的方法吗?或者我应该创建我的自定义键盘?

最佳答案

您可以将新的 subview 添加到您的应用程序窗口。

func attach(sender : UIButton)
{
// Calculate and replace the frame according to your keyboard frame
var customView = UIView(frame: CGRect(x: 0, y: self.view.frame.size.height-300, width: self.view.frame.size.width, height: 300))
customView.backgroundColor = UIColor.redColor()
customView.layer.zPosition = CGFloat(MAXFLOAT)
var windowCount = UIApplication.sharedApplication().windows.count
UIApplication.sharedApplication().windows[windowCount-1].addSubview(customView);
}

关于ios - 如何在 iOS 中通过键盘显示 UIView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32391704/

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