iOS 中这个栏怎么做呢?
我真的很喜欢这个弹出窗口,其中包含所选列表项的附加功能:
但不知道这是怎么回事完毕。有人知道该怎么做或者有指南或一些关键字给我吗?
这是另一个示例:
I really like this popup with the additional functions for the selected listitem under:
But have no idea how this is done. Does anyone know how to do it or has a guide or some keywords for me?
Here is another example:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过在选择单元格时向视图添加一个 alpha <1 的 UISegmentedControl 来实现类似的效果 - 希望这会有所帮助:)
You could achieve a similar effect by adding a UISegmentedControl with <1 alpha to the view when a cell is selected - hope this helps :)
需要注意的关键字是:
UIToolBar
或UISegmentedControl
- 两者都使用一些自定义绘图或外观修改。好吧,您也可以创建一个包含一堆UIImageView
的完整自定义UIView
。另外,对于该阴影,请查看
CALayer
的shadowOffset
、shadowColor
、shadowOpacity
等。 。 特性。The keywords to look out for are:
UIToolBar
orUISegmentedControl
- both using some custom drawing or appearance modifications. Well, you could just as well create an entire customUIView
containing a bunch ofUIImageView
's.Additionaly, for that shadow have a look at
CALayer
'sshadowOffset
,shadowColor
,shadowOpacity
, etc. ... properties.