使用样式表时 TTThumbsViewController 不显示缩略图。
如果我使用全局样式表( [TTStyleSheet setGlobalStyleSheet:[[[StyleSheet alloc] init] autorelease]];
),那么我在 TTThumbsViewController
中看不到任何缩略图。
我为 TTThumbsViewController 指定这些样式:
- (UIColor *)navigationBarTintColor;
- (UIColor *)backgroundColor;
- (UIColor *)tablePlainBackgroundColor;
- (UIColor *)tableHeaderTintColor;
- (UIColor *)thumbnailBackgroundColor;
如果我将thumbnailBackgroundColor 设置为grayColor,我会在控制器中看到灰色矩形,但看不到下载的图像。
如果我评论全局样式表的使用,我会正确看到缩略图。
我尝试在 TTControl 演示应用程序中使用样式表,并且 TTThumbsViewController 的行为与我的应用程序中的行为相同。
以下是 TTControl
演示应用程序的屏幕截图:
我希望我没有做某事错误的。有人能知道为什么会发生这种情况吗? 谢谢。再见。
If I use global stylesheet ( [TTStyleSheet setGlobalStyleSheet:[[[StyleSheet alloc] init] autorelease]];
) than I don't see any thumbnails in TTThumbsViewController
.
I specify these styles for TTThumbsViewController
:
- (UIColor *)navigationBarTintColor;
- (UIColor *)backgroundColor;
- (UIColor *)tablePlainBackgroundColor;
- (UIColor *)tableHeaderTintColor;
- (UIColor *)thumbnailBackgroundColor;
If I set thumbnailBackgroundColor
to grayColor
I see gray rectangles in the controller but no downloaded images.
If I comment use of global stylesheet I see thumbnails correctly.
I tried use stylesheet in TTControl
demo app and TTThumbsViewController
behave same as in my app.
Here is screenshot from TTControl
demo app:
I hope I am not doing something wrong. Can anybody have some idea why this is happening ?
Thanks. Bye.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅以下教程来帮助您正确实施
TTStyleSheet
:Three20 Stylesheets iPhone 教程< /a>
Please see the following Tutorial to help you with implementing
TTStyleSheet
properly:Three20 Stylesheets iPhone Tutorial