新浪微博客户端(30)-制作微博中的九宫格相册图片

DJStatusPhotosView.h

#import <UIKit/UIKit.h>

@interface DJStatusPhotosView : UIView

@property (nonatomic,strong) NSArray *photos;

/** 根据相册图片个数计算相册尺寸 */
+ (CGSize)sizeWithCount:(NSUInteger)count;

@end

DJStatusPhotosView.m

#import "DJStatusPhotosView.h"
#import "UIImageView+WebCache.h"
#import "DJPhoto.h"

// 相册的最大列数
#define DJStatusPhotosViewMaxColumns 3
// 相册中的图片间距
#define DJStatusPhotosViewMargin 4
// 相册图片的宽高
#define DJStatusPhotoWH ((DJContentWidth - (DJStatusPhotosViewMaxColumns - 1) * DJStatusPhotosViewMargin) / DJStatusPhotosViewMaxColumns)

@implementation DJStatusPhotosView

- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
//        self.backgroundColor = [UIColor redColor];
    }
    return self;
}

+ (CGSize)sizeWithCount:(NSUInteger)count {

    // 相册列数
    NSUInteger cols = (count >= DJStatusPhotosViewMaxColumns ) ? DJStatusPhotosViewMaxColumns : count;
    // 相册宽度
    CGFloat photosW = cols * DJStatusPhotoWH + (cols-1) * DJStatusPhotosViewMargin;

    /*
     *  补充公式:
     *  一共268条数据,每页18条,共有多少页,计算公式如下
     *  int pages = (totalCount + maxNumsInPage - 1) / maxNumsInPage
     */

    // 相册行数
    NSUInteger rows = (count + DJStatusPhotosViewMaxColumns - 1) / DJStatusPhotosViewMaxColumns;
    CGFloat photosH = rows * DJStatusPhotoWH + (rows-1) * DJStatusPhotosViewMargin;

    return CGSizeMake(photosW,photosH);
}

- (void)setPhotos:(NSArray *)photos {

    _photos = photos;

    // 添加和创建所需的UIImageView,并且设置图片的显示内容
    NSUInteger photosCount = photos.count;

    // 令相册里的photoView的个数始终满足待显示的需要,若数组中的图片个数大于相册中现有的个数,则创建新的photoView
    while (self.subviews.count < photosCount) {
        UIImageView *photoView = [[UIImageView alloc] init];
        [self addSubview:photoView];
    }

    // 设置相册中的imageView的显示内容
    for (int i = 0; i < self.subviews.count; i++) {
        UIImageView *photoView = self.subviews[i];
        if (i >= photosCount) { // 当前photoView多余,将其hidden属性置为YES,因为tableView的cell会重复利用
            photoView.hidden = YES;
        } else {
            photoView.hidden = NO;
            DJPhoto *photo = photos[i];
            [photoView sd_setImageWithURL:[NSURL URLWithString:photo.thumbnail_pic] placeholderImage:[UIImage imageNamed:@"timeline_image_placeholder"]];
        }

    }

}

// 在此方法中设置相册中单个图片的frame
- (void)layoutSubviews {

    [super layoutSubviews];

    for (int i = 0; i < self.photos.count; i++) {
        UIImageView *photoView = self.subviews[i];
        int col = i % DJStatusPhotosViewMaxColumns;
        photoView.x = col * (DJStatusPhotoWH + DJStatusPhotosViewMargin);

        int row = i / DJStatusPhotosViewMaxColumns;
        photoView.y = row * (DJStatusPhotoWH + DJStatusPhotosViewMargin);

        photoView.width = DJStatusPhotoWH;
        photoView.height = DJStatusPhotoWH;
    }

}

@end

最终效果:

时间: 2024-10-15 03:05:50

新浪微博客户端(30)-制作微博中的九宫格相册图片的相关文章

新浪微博客户端(55)-高亮显示微博内容中的昵称,话题,超链接

DJStatus.h #import <Foundation/Foundation.h> @class DJUser; /** 微博 */ @interface DJStatus : NSObject /** 微博id */ @property (nonatomic,copy) NSString *idstr; /** 微博内容 */ @property (nonatomic,copy) NSString *text; /** 微博内容(带属性) */ @property (nonatomic

新浪微博客户端(56)-拼接微博内容中的昵称,超链接,表情图片

DJStatusPart.h #import <Foundation/Foundation.h> @interface DJStatusPart : NSObject /** 文本块内容 */ @property (nonatomic,copy) NSString *text; /** 文本块范围 */ @property (nonatomic,assign) NSRange range; /** 当前文本块是否是特殊文本(昵称,超链接,Emoji) */ @property (nonatom

新浪微博客户端(22)-创建微博Cell

DJStatusCell.h #import <UIKit/UIKit.h> @class DJStatusCellFrame; @interface DJStatusCell : UITableViewCell /** DJStatusCell 的默认构造方法 */ + (instancetype)cellWithTableView:(UITableView *)tableView; @property (nonatomic,strong) DJStatusCellFrame *status

新浪微博客户端(47)-在TextView中插入表情

DJEmotionPageView.m // 发送点击广播(和android类似,区别在于android的广播是只要有上下文对象context,就可以发送) // iOS中的通知发送和接收都是通过NSNotificationCenter完成 NSMutableDictionary *userInfo = [NSMutableDictionary dictionary]; userInfo[DJEmotionDidSelctedEmotionKey] = btn.emotion; [[NSNoti

新浪微博客户端(29)-格式化微博来源显示

DJStatus.m // 更新来源显示 - (void)setSource:(NSString *)source { NSRange range; range.location = [source rangeOfString:@">"].location + 1; range.length = [source rangeOfString:@"<" options:NSBackwardsSearch].location - range.location;

Android新浪微博客户端(七)——ListView中的图片异步加载、缓存

原文出自:方杰|http://fangjie.sinaapp.com/?p=193转载请注明出处 最终效果演示:http://fangjie.sinaapp.com/?page_id=54该项目代码已经放到github:https://github.com/JayFang1993/SinaWeibo 一.ListView的图片异步加载 我们都知道对每一个Weibo Item都有用户头像,而且每一条微博还可能带有图片.如果在加载列表的同时加载图片,这样有几个缺点,第一很费事,界面卡住,用户体验很不

新浪微博客户端(39)-从图库或相机中选择图片

DJComposeViewController.m #pragma mark - DJComposeToolbar 代理方法 - (void)composeToolbar:(DJComposeToolbar *)toolbar didClickBtnType:(DJComposeToolbarBtnType)btnType { switch (btnType) { case DJComposeToolbarBtnTypeCamera: [self openCameraSurface]; brea

android开发新浪微博客户端 完整攻略 [新手必读]

开始接触学习android已经有3个礼拜了,一直都是对着android的sdk文档写Tutorials从Hello World到Notepad Tutorial算是初步入门了吧,刚好最近对微博感兴趣就打算开发个android版本的新浪微博客户端作为练手项目,并且以随笔的方式详细的记录开发的全过程.本人对java语言以及eclipse Ide都是初次应用基本上属于边学边用,做移动设备上的东西也是第一次,总的来说属于无基础.无经验.无天赋的纯三无人员,还请广大同学们多多给予指点. 开发第一件事情,那

Android新浪微博客户端(六)——Home界面的ListView

原文出自:方杰|http://fangjie.sinaapp.com/?p=184转载请注明出处 最终效果演示:http://fangjie.sinaapp.com/?page_id=54该项目代码已经放到github:https://github.com/JayFang1993/SinaWeibo 一.首先是ListView的adapter. 因为微博列表的Item不是规则的,比如说有些微博有转发子微博,有些没有,有些有图片,有些没有图片,所以说很不固定.这里就采用BaseAdapter,要自