Skip to content

Commit

Permalink
NSMutableArray 改用 strong,改错别字。
Browse files Browse the repository at this point in the history
  • Loading branch information
dashzou committed Dec 30, 2016
1 parent 00d75bd commit d412399
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

@property(nonatomic, strong, readonly) NSMutableArray *imagesAssetArray;
@property(nonatomic, strong, readonly) QMUIAssetsGroup *assetsGroup;
@property(nonatomic, copy) NSMutableArray *selectedImageAssetArray; // 当前被选择的图片对应的 QMUIAsset 对象数组
@property(nonatomic, strong) NSMutableArray *selectedImageAssetArray; // 当前被选择的图片对应的 QMUIAsset 对象数组

@property(nonatomic, assign) BOOL allowsMultipleSelection; // 是否允许图片多选,默认为 YES。如果为 NO,则不显示 checkbox 和底部工具栏。
@property(nonatomic, assign) NSInteger maximumSelectImageCount; // 最多可以选择的图片数,默认为无符号整形数的最大值,相当于没有限制
Expand Down
2 changes: 1 addition & 1 deletion QMUIKit/UIKitExtensions/QMUITableViewCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ - (void)layoutSubviews {
self.detailTextLabel.frame = detailTextLabelFrame;

// `layoutSubviews`这里不可以拿textLabel的minX来设置separatorInset,如果要设置只能写死一个值
// 否则会导致textLabel的minX逐渐叠加从而使textLabel被移除屏幕外
// 否则会导致textLabel的minX逐渐叠加从而使textLabel被移出屏幕外
}
}

Expand Down

0 comments on commit d412399

Please sign in to comment.