博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iphone three20 How to Start Three20 Photo Viewer in Thumbnail view?
阅读量:6192 次
发布时间:2019-06-21

本文共 1067 字,大约阅读时间需要 3 分钟。

1原文地址:

 

 

You should use TTThumbsViewController instead of TTPhotoViewController. There's a good example of it in three20 TTCategory sample app.

TTThumbsViewController also uses a photo source, so you won't have to change that much code. Your Photo viewer should extend TTThumbsViewController and implement theTTThumbsViewControllerDelegate delegate functions.

You can load the photo source in your viewDidLoad function:

/// - (void)viewDidLoad {
  NSMutableArray* photos = [NSMutableArray array];   for (int i=kImagesCount;i>=1;i--) {
    Photo* photo = [[[Photo alloc] initWithURL:[NSString stringWithFormat:@"bundle://%d.png", i]                                       smallURL:[NSString stringWithFormat:@"bundle://%dt.png", i]                                           size:CGSizeMake(400, 400)] autorelease];     [photos addObject:photo];   }   self.photoSource = [[PhotoSource alloc]                       initWithType:PhotoSourceNormal                       title:@"Select Picture"                       photos:photos                       photos2:nil]; }
 

转载地址:http://durda.baihongyu.com/

你可能感兴趣的文章
运动、下厨和看电影的闲暇时光
查看>>
福音:不懂代码也能用TensorFlow做验证码识别了
查看>>
关于在window上Mysql5.7.20解压版的安装
查看>>
Python全栈工程师(exercises)
查看>>
Beego Models之二
查看>>
C/S 与 B/S 的区别
查看>>
MySQL并发时经典常见的死锁原因及解决方法
查看>>
Apache Tomcat 9.0.17 发布,知名 Web 应用服务器
查看>>
使用xUnit为.net core程序进行单元测试(4)
查看>>
前端框架三巨头年度走势对比:Vue 增长率最高
查看>>
SonarQube安装步骤 Windows10系统
查看>>
linux下安装mysql数据库与相关操作
查看>>
Java单例模式再加强——按组多单例
查看>>
阿里云服务器怎么连接?
查看>>
console觉醒之路,打印个动画如何?
查看>>
MySQL分区表-电商数据库设计及优化学习笔记
查看>>
[20180130]sqlplus字段显示问题.txt
查看>>
浏览器指纹定位攻击路径实例
查看>>
JS-两周内自动登录功能
查看>>
随笔 2016-1-4
查看>>