1

I have a UITableView that is populated with an array, it contains cell label and cell detail text, the detail text is basically the URL at which the file is saved. I want that on long press of the uitableviewcell a pop up comes up which has the option to download the file and on clicking that option the file is saved in a specific directory on the phone memory.

How can i do that?

4

2 回答 2

2

向您的单元格对象添加手势

UILongPressGestureRecognizer *lpgr = [[UILongPressGestureRecognizer alloc] 
  initWithTarget:self action:@selector(handleLongPress:)];
lpgr.minimumPressDuration = 1.0; //seconds
lpgr.delegate = self;
[objMyTableViewCell addGestureRecognizer:lpgr];
[lpgr release];

处理它

-(void)handleLongPress:(UILongPressGestureRecognizer *)gestureRecognizer
{
   UITableVIewCell *objTableCell = (UITableVIewCell*)gestureRecognizer
   NSURL *url = [NSURL URLWithString:objTableCell.lable.text];

ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
    [request setDelegate:self];
    [request setDidFinishSelector:@selector(requestDone:)];
    [request setDidFailSelector:@selector(requestWentWrong:)];
    [request setDownloadDestinationPath:[NSString stringWithFormat:@"%@",filePath]]; //use the path from earlier
    [queue addOperation:request]; //queue is an NSOperationQueue
    [request setDownloadProgressDelegate:self];
    [request setShowAccurateProgress:YES];


}

下载文件的响应方法

- (void)requestDone:(ASIHTTPRequest *)request
{
    NSString *response = [request responseString];
    UIAlertView *alert = [[UIAlertView alloc]
                          initWithTitle: @"hurreh!!"
                          message: @"Your download complete"
                          delegate: nil
                          cancelButtonTitle:@"OK"
                          otherButtonTitles:nil];
    [alert show];
    [alert release];
    //Do something useful with the content of that request.
}



- (void)requestWentWrong:(ASIHTTPRequest *)request
{
    NSError *error = [request error];
}
于 2013-04-24T05:17:33.070 回答
0

对于长按,UITableViewCell您可以使用UILongPressGestureRecognizer。要显示选项,您可以使用UIActionSheet。要下载文件,您可以使用NSURLConnectionASIHTTPRequest

于 2013-04-24T05:17:26.690 回答