gpt4 book ai didi

iOS UI - 类似于 iPhoto 底栏 UI

转载 作者:行者123 更新时间:2023-11-29 04:32:43 25 4
gpt4 key购买 nike

我是 iOS 应用开发新手。我想创建类似于 iPhoto 应用程序中底部工具行的 UI。任何教程或技巧都会非常有帮助。 Click this link to see UI of iPhoto app.上面链接中的第一张图片显示了底部工具容器。

谢谢。

最佳答案

您可以使用普通的 UIToolbar。这是将 UISlider 添加到工具栏的教程:http://eureka.ykyuen.info/2010/06/09/iphone-adding-uislider-to-uitoolbar/

// Initialize  
aSlider = [[UISlider alloc] init];
UIBarButtonItem *sliderAsToolbarItem = [[UIBarButtonItem alloc]
initWithCustomView:aSlider];
// Set the width of aSlider
[sliderAsToolbarItem setWidth:250.0];

// Add the items to the toolbar
[toolbar setItems:[NSArray arrayWithObjects:sliderAsToolbarItem, nil]];

如果您搜索自定义 UIToolbar,您将获得大量带有教程的结果。

在这里您可以找到自定义UITabbar:http://idevrecipes.com/2010/12/16/raised-center-tab-bar-button/

或者您可以在工具栏或选项卡栏的情况下仅使用带有按钮的 View 并将其设置为底部。

关于iOS UI - 类似于 iPhoto 底栏 UI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11502325/

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