0

我是 iOS 应用开发新手。我想在 iPhoto 应用程序中创建类似于底部工具行的 UI。任何教程或提示都会非常有帮助。 单击此链接可查看 iPhoto 应用程序的 UI。 上面链接的第一张图片显示了底部的工具容器。

谢谢。

4

1 回答 1

1

您可以使用普通的 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/

或者您可以在工具栏或标签栏的情况下使用带有按钮的视图并将其设置为底部。

于 2012-07-16T10:34:33.510 回答