Skip to content

Commit 23aeeed

Browse files
committed
调整
1 parent 8cf13cf commit 23aeeed

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

SDAutoLayout.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Pod::Spec.new do |s|
22

33
s.name = "SDAutoLayout"
4-
s.version = "2.1.3"
5-
s.summary = "The most easy way for autoLayout. 2.1.3版本更新内容:增加设置偏移量offset功能;修复用xib生成的view出现的部分约束失效问题;修复其他bug"
4+
s.version = "2.1.5"
5+
s.summary = "The most easy way for autoLayout. 2.1.5版本更新内容:实现在tableview插入新的cell数据时自动缓存管理"
66

77
s.homepage = "https://github.com/gsdios/SDAutoLayout"
88
# s.screenshots = "https://camo.githubusercontent.com/5d9e879c7006297b3d6e12c20c6cd1e15bf83016/687474703a2f2f7777332e73696e61696d672e636e2f626d6964646c652f39623831343665646777316578346d756b69787236673230396730376c6864742e676966"
@@ -14,7 +14,7 @@ Pod::Spec.new do |s|
1414
s.platform = :ios
1515
s.platform = :ios, "7.0"
1616

17-
s.source = { :git => "https://github.com/gsdios/SDAutoLayout.git", :tag => "2.1.3"}
17+
s.source = { :git => "https://github.com/gsdios/SDAutoLayout.git", :tag => "2.1.5"}
1818

1919
s.source_files = "SDAutoLayoutDemo/SDAutoLayout/**/*.{h,m}"
2020

SDAutoLayoutDemo/SDAutoLayout/UITableView+SDAutoTableViewCellHeight.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ - (void)sd_reloadRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITabl
392392
[self sd_reloadRowsAtIndexPaths:indexPaths withRowAnimation:animation];
393393
}
394394

395-
- (void)sd_deleteRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
395+
- (void)sd_deleteRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
396396
{
397397
for (NSIndexPath *indexPath in indexPaths) {
398398
[self.cellAutoHeightManager deleteThenResetHeightCache:indexPath];
@@ -401,7 +401,7 @@ - (void)sd_deleteRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAn
401401
}
402402

403403

404-
- (void)sd_insertRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
404+
- (void)sd_insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
405405
{
406406
[self.cellAutoHeightManager insertNewDataAtIndexPaths:indexPaths];
407407
[self sd_insertRowsAtIndexPaths:indexPaths withRowAnimation:animation];

0 commit comments

Comments
 (0)