수색…


소개

UIRefreshControl 개체는 테이블 뷰의 내용을 새로 고치는 데 사용할 수있는 표준 컨트롤을 제공합니다. 연결된 테이블 뷰 컨트롤러 개체를 통해 테이블에 새로 고침 컨트롤을 연결합니다. 테이블 뷰 컨트롤러는 컨트롤을 테이블의 시각적 모양에 추가하고 적절한 사용자 제스처에 대한 응답으로 해당 컨트롤의 표시를 관리하는 작업을 처리합니다.

목표 -C 예제

먼저 ViewController에서 이와 같은 속성을 선언하십시오.

@property (nonatomic) UIRefreshControl *refreshControl;

나중에 viewDidLoad() 에서 아래와 같이 refreshControl을 설정합니다.

self.refreshControl = [[UIRefreshControl alloc]init];
[self.tableView addSubview:self.refreshControl];
[self.refreshControl addTarget:self action:@selector(refreshTable) forControlEvents:UIControlEventValueChanged];
//Setting the tint Color of the Activity Animation
self.refreshControl.tintColor = [UIColor redColor];
//Setting the attributed String to the text
NSMutableAttributedString * string = [[NSMutableAttributedString alloc] initWithString:@"firstsecondthird"];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0,5)];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(5,6)];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(11,5)];
self.refreshControl.attributedTitle = string;

Now refreshTable 함수는 다음과 같이 정의됩니다.

- (void)refreshTable {
    //TODO: refresh your data
    [self.refreshControl endRefreshing];
    [self.refreshControl beginRefreshing];
    [self.tableView reloadData];
    [self.refreshControl endRefreshing];
}

결과 새로 고침보기는 다음과 같습니다.

tableView에 refreshControl을 설정합니다.

UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
[refreshControl addTarget:self action:@selector(pullToRefresh:) forControlEvents:UIControlEventValueChanged];
self.scrollView.alwaysBounceVertical = YES;
[self.scrollView addSubview:refreshControl];

- (void)pullToRefresh:(UIRefreshControl*) sender{
//Do work off the main thread
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
    // Simulate network traffic (sleep for 2 seconds)
    [NSThread sleepForTimeInterval:2];
    //Update data
    //Call complete on the main thread
    dispatch_sync(dispatch_get_main_queue(), ^{
        //Update network activity UI
        NSLog(@"COMPLETE");
        [sender endRefreshing];
    });
});

}



Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow