You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
53 lines
1.4 KiB
![]()
2 years ago
|
//
|
||
|
// XHAlbum.h
|
||
|
// MessageDisplayExample
|
||
|
//
|
||
|
// Created by HUAJIE-1 on 14-5-19.
|
||
|
// Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
// 朋友圈分享人的名称高度
|
||
|
#define kXHAlbumUserNameHeigth 18
|
||
|
|
||
|
// 朋友圈分享的图片以及图片之间的间隔
|
||
|
#define kXHAlbumPhotoSize 60
|
||
|
#define kXHAlbumPhotoInsets 5
|
||
|
|
||
|
// 朋友圈分享内容字体和间隔
|
||
|
#define kXHAlbumContentFont [UIFont systemFontOfSize:13]
|
||
|
#define kXHAlbumContentLineSpacing 4
|
||
|
|
||
|
// 朋友圈评论按钮大小
|
||
|
#define kXHAlbumCommentButtonWidth 30
|
||
|
#define kXHAlbumCommentButtonHeight 25
|
||
|
|
||
|
@interface XHAlbum : NSObject
|
||
|
|
||
|
@property (nonatomic, copy) NSString *userName;
|
||
|
@property (nonatomic, copy) NSString *profileAvatarUrlString;
|
||
|
|
||
|
@property (nonatomic, copy) NSString *albumShareContent;
|
||
|
|
||
|
@property (nonatomic, strong) NSArray *albumSharePhotos;
|
||
|
|
||
|
@property (nonatomic, strong) NSArray *albumShareComments;
|
||
|
@property (nonatomic, strong) NSNumber *albumShareCommentCount;
|
||
|
|
||
|
|
||
|
@property (nonatomic, strong) NSArray *albumShareLikes;
|
||
|
@property (nonatomic, strong) NSNumber *albumShareLikeCount;
|
||
|
@property (nonatomic, strong) NSNumber *isAlbumShareLikeFormMe;
|
||
|
|
||
|
|
||
|
|
||
|
@property (nonatomic, strong) NSString *album_id;
|
||
|
@property (nonatomic, strong) NSDate *timestamp;
|
||
|
|
||
|
@property (nonatomic ,assign) BOOL isComment;
|
||
|
|
||
|
|
||
|
- (NSString *)getTimeStr;
|
||
|
@end
|