类似 IKImageBrowserCell 的查找器
我正在尝试自定义 IKImageBrowserCell 以使其接近 Finder。
目前我的问题是标题要分成两行。您是否有过需要修改哪些内容才能实现这一目标的经验?
谢谢和问候,
I am trying to customize an IKImageBrowserCell to have something close to the Finder.
For the moment my issue is to have a title in 2 lines. Do you have any experience of what need to be modified in order to achieve this?
Thanks and regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这可以通过在子类
IKImageBrowserCell< 的
- (CALayer *)layerForType:(NSString *)type
方法返回的CALayer
上绘制标题来实现。 /代码>。请参阅我的回答此处。
Yes, this is possible by drawing your title on a
CALayer
returned from the- (CALayer *)layerForType:(NSString *)type
method of a subclassedIKImageBrowserCell
.See my answer here.