0

コレクションビューでプルダウンしてリフレッシュしようとしましたが、コレクションビューに同じコード(テーブルビュープルダウンでコントローラをリフレッシュ)を使用しています。誰でも私の問題を助けてください。

4

1 に答える 1

1

まず、このコードを viewDidLoad に記述できます:-

- (void) viewDidLoad
{
    [super viewDidLoad];

    UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];

    refreshControl.tintColor = [UIColor blackColor];

    refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@"Pull to Refresh"];

    [refreshControl addTarget:self action:@selector(refreshControlAction) forControlEvents:UIControlEventValueChanged];

    [collectionView addSubview:refreshControl];
}

 Now add a target

- (void) refreshControlAction
{
    // Enter your code for request you are creating here when you pull the collectionView. When the request is completed then the collectionView go to its original position.
}
于 2013-11-09T11:42:59.897 に答える