自定义 UIActionSheet

发布于 2024-08-05 23:25:52 字数 524 浏览 4 评论 0原文

在 Twitterific 应用程序中,有一个看起来像 UIActionSheet 的控件,但它看起来是自定义的。

我想知道如何制作类似外观的视图感受水平行而不是默认垂直行中的按钮。有人对教程或示例代码的链接有任何建议吗?

替代文本 http://img2.imageshack.us/img2/8784/twitterific。 th.jpg

标准Apple 显示的 ActionSheet

In the Twitterific app, there's a control that looks like UIActionSheet but it looks customized.

I would like to know how to make a view that similar look & feel with the buttons in a horizontal row instead of the default vertical. Any one have any suggestions to a link for a tutorial or sample code to get started on this?

alt text http://img2.imageshack.us/img2/8784/twitterific.th.jpg

The standard ActionSheet as shown by Apple.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

白鸥掠海 2024-08-12 23:25:52

这只是一个普通的 UIView 子类,它使用 Core Graphics 绘制渐变背景(我不希望它是一个图像),并有一些 UIButtons 作为子视图(静态定位并添加到视图中,或者全部通过代码定位)。静态会使事情变得更容易,但可重用性较差)

That's just a normal UIView subclass which draws the gradient background using Core Graphics (I don't expect it to be an image) and has some UIButtons as subviews (Either staticly positioned and added to the view or all being positioned by code. Doing it staticly will make things easier but less reusable)

忆梦 2024-08-12 23:25:52

我几乎可以肯定这是一个自定义的 UIView。

它实际上并没有那么复杂——大部分工作都是漂亮的按钮图像。

您可以创建一个具有适当位置的 UIButtons 的视图,然后只需在适当的时间将其滑入到位即可。

I'm virtually certain this a custom UIView.

It's really not all that complicated - most of the work is the nice looking button images.

You'd create a view with appropriately positioned UIButtons, then simply slide it into place at the appropriate time.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文