File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -95,8 +95,8 @@ - (void)touchedHeaderView:(UITapGestureRecognizer *)recognizer {
95
95
96
96
@interface FZAccordionTableView () <UITableViewDataSource, UITableViewDelegate, FZAccordionTableViewHeaderViewDelegate>
97
97
98
- @property id <UITableViewDelegate, FZAccordionTableViewDelegate> subclassDelegate;
99
- @property id <UITableViewDataSource> subclassDataSource;
98
+ @property ( weak , nonatomic ) id <UITableViewDelegate, FZAccordionTableViewDelegate> subclassDelegate;
99
+ @property ( weak , nonatomic ) id <UITableViewDataSource> subclassDataSource;
100
100
101
101
@property (nonatomic ) BOOL numberOfSectionsCalled;
102
102
@property (strong , nonatomic ) NSMutableSet *mutableInitialOpenSections;
@@ -150,7 +150,7 @@ - (void)removeOpenedSection:(NSInteger)section {
150
150
151
151
- (NSArray *)getIndexPathsForSection : (NSInteger )section {
152
152
153
- NSInteger numOfRows = [self .sectionInfos[section] numberOfRows ];
153
+ NSInteger numOfRows = [self .sectionInfos[section] numberOfRows ];
154
154
NSMutableArray *indexPaths = [NSMutableArray array ];
155
155
for (int row = 0 ; row < numOfRows; row++) {
156
156
[indexPaths addObject: [NSIndexPath indexPathForRow: row inSection: section]];
You can’t perform that action at this time.
0 commit comments