Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 imagebrowserview 正确显示一个充满照片的文件夹,但它没有显示每张照片的图像标题......
有教程告诉我这是如何工作的吗?
问候
AGW
默认情况下不显示标题,即使您提供了数据。您需要通过在 IKImageBrowserView 对象上调用 setCellsStyleMask 来打开它们。
[imageBrowserView setCellsStyleMask:IKCellsStyleTitled];
您的 IKImageBrowserItem 项目只需要提供标题和/或副标题。以 Apple 示例代码“ImageKitDemo”为例。