Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hi i am implementing a table in which i am getting request i have list of students to which i want to add as my room mate i have two button accept and reject the problem is here when i click on accept button i want that row will be deleted from the array and also i want to shift the deleted row value into the table of nextview controller in case of accept request . and in case of reject button cliked only want to delete the row not to move the value of cell into next view controller i am implementing this project by using storyboard can anybody have idea about that plase share me this is the code for cellForRowAtIndexPath:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"DefaultCell"];
    if(cell == nil) {
        cell =[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"DefaultCell"];

    }
    acceptreq = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    acceptreq.frame =CGRectMake(170, 10, 60, 30);
    rejectreq = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    rejectreq.frame =CGRectMake(240, 10, 60, 30);
    [acceptreq setTitle:@"Accept" forState:UIControlStateNormal];
    [rejectreq setTitle:@"Reject" forState:UIControlStateNormal];
    [acceptreq addTarget:self action:@selector(Acceptrequest:) forControlEvents:UIControlEventTouchUpInside];
    [rejectreq addTarget:self action:@selector(Rejectrequest:) forControlEvents:UIControlEventTouchUpInside];
    [cell addSubview:acceptreq];
    [cell addSubview:rejectreq];
    [acceptreq setTag:indexPath.row];
    cell.textLabel.text = [myarray objectAtIndex:indexPath.row];
    return cell;

}
share|improve this question
2  
Please accept answers in your previous questions and improve accpet rate. It will encourage people to help you. =) – rohan-patel Jan 21 at 10:07
Delete element from data source and call reload – amar Jan 21 at 10:20
English 100 - End each sentence with a period. – TBlue Jan 21 at 10:38

2 Answers

up vote 1 down vote accepted

In short you can delete selected Row with clicking UIbutton like bellow:-

-(IBAction)Acceptrequest:(id)sender
{
UIButton *btn =(UIButton*)sender;

[myarray removeObjectsAtIndexes:btn.tag];
[tableView deleteRowsAtIndexPaths:myarray withRowAnimation:UITableViewRowAnimationAutomatic];

[tableVIew reloadData];
}
share|improve this answer
getting this error /Users/mobitsolutions/Desktop/adnan/BedSpace/RequestViewController.m:64:6: No visible @interface for 'NSArray' declares the selector 'removeObjectsAtIndexes:' on this line [myarray removeObjectsAtIndexes:btn.tag]; – Azy Qadir Jan 21 at 10:22
myarray = [NSMutableArray array] – pbibergal Jan 21 at 10:26
Yes @pbibergal right use NSMutableArray boss – Nitin Gohel Jan 21 at 10:29
another error when click on button i just now declare array as nsmutablearray but when click on button getting this error Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFConstantString row]: unrecognized selector sent to instance 0x1a120' – Azy Qadir Jan 21 at 10:34
I suggest you to go to iOS documentation and read more about use of arrays. The flow is simple: you add to array A the index paths you want to delete, then in tableview you remove those rows. In array B (datasource) you remove the index. – pbibergal Jan 21 at 10:38
show 1 more comment

You need to implement this method:

[tableView deleteRowsAtIndexPaths:arrayOfIndexPathsToDelete withRowAnimation:UITableViewRowAnimationAutomatic];
share|improve this answer
its not working mate getting this error – Azy Qadir Jan 21 at 10:17
It has to be NSMutableArray instead of NSArray – pbibergal Jan 21 at 10:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.