iOS UI - 类似于iPhoto底栏UI

时间:2012-07-16 10:17:47

标签: ios user-interface interface

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

感谢。

1 个答案:

答案 0 :(得分: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/

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