我不知道发生了什么,但是我的UICollectionView没有自动从另一个类重新加载。
我在class1中有我的UICollectionView,我通过从class2调用newArray来更新其中的数据
class1:
In view DidLoad
UICollectionViewFlowLayout *aFlowLayout = [[UICollectionViewFlowLayout alloc] init];
[aFlowLayout setItemSize:CGSizeMake(self.view.frame.size.width/2 - 15, self.view.frame.size.height/3 - 30)];
[aFlowLayout setSectionInset:UIEdgeInsetsMake(10,10,10,10)];
[aFlowLayout setScrollDirection:UICollectionViewScrollDirectionVertical];
self.collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0,0,self.view.frame.size.width, self.view.frame.size.height) collectionViewLayout:aFlowLayout];
[self.collectionView registerClass:[searchedPersonsCell class] forCellWithReuseIdentifier:@"SongCell"];
[self.collectionView setBackgroundColor:[UIColor clearColor]];
self.collectionView.delegate = self;
self.collectionView.dataSource=self;
self.collectionView.scrollEnabled=YES;
self.collectionView.alwaysBounceVertical=YES;
[self.view addSubview:self.collectionView];
[self.collectionView performSelector:@selector(reloadData) withObject:nil afterDelay:0];
-(void) reloadPersonsData:(NSMutableArray*)newArray
{
NSLog(@"success");
self.personsArray =newArray;
dispatch_async(dispatch_get_main_queue(), ^{
[self.collectionView reloadData];
[self.collectionView performSelector:@selector(reloadData) withObject:nil afterDelay:0];
[self.collectionView setNeedsDisplay];
[self.collectionView setNeedsLayout];
[CATransaction flush];
// [NSTimer scheduledTimerWithTimeInterval:0.3 target:self.collectionView selector:@selector(reload) userInfo:nil repeats:NO];
//tried all the above
});
}
当用户要求更多人时,我通过协议访问class2,
现在在第2课:
我正在获取新数组,将其传递给class1中的属性数组(它成功传递并且我从调试中检查)然后调用reloadPersonsData函数从class2到class1(打印nslog“success”以便它访问方法。 但什么都没发生! numberOfItemsInSection或numberOfsection未被调用!!并且uicollectionview未更新
奇怪的是,如果我从一个按钮调用class1中的相同方法reloadPersonsData,我就更新了UiCollectionView!那么这里有什么问题?为什么从另一个类调用它时不会重新加载它 有谁可以帮助我?
谢谢
答案 0 :(得分:1)
检查class1拥有的class2实例是否与class1相同
祝你好运