gpt4 book ai didi

ios - 使用 ios 的 View 和控件

转载 作者:行者123 更新时间:2023-11-28 21:33:20 24 4
gpt4 key购买 nike

我是 iOS 新手。我需要你的建议。我在我的应用程序上看到了一些我需要的东西的实现:

enter image description here enter image description here

我知道如何使用文本字段。我需要下面的布局(黑色标记,蓝色文本翻译为“准备就绪”)。

你能告诉我它在 ios 中是如何调用的吗,它是自定义的还是来自盒子(ios sdk)的一些标准 View ?也许如果你有一些链接,我在哪里可以找到实现。谢谢。

最佳答案

1)可以使用原生UI组件来完成

2)您需要创建一个自定义 View ,您需要添加两个 View ,第一个是 UIPickerView,第二个是 UIToolBar

3)下面是添加工具栏的示例代码

4) 确保你的工具栏框架 x 将是(总高度 - pickerView hieght -toolBar 高度)

        UIToolbar *keyboardToolbar = [[UIToolbar alloc]initWithFrame:CGRectMake(0, calcultedHeight, self.view.frame.size.width,44)];
//here adding your left buttons
UIBarButtonItem *btnDone = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(doneButtonAction)];
//here we are adding flexible space
UIBarButtonItem *btnFlexible = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
//here your ready button
UIBarButtonItem *btnReady = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(readyButtonAction)];
[keyboardToolbar setItems:[NSArray arrayWithObjects:btnFlexible, btnDone,btnReady, nil]];

关于ios - 使用 ios 的 View 和控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34947366/

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