Code Monkey home page Code Monkey logo

Comments (7)

arturdev avatar arturdev commented on July 19, 2024 1

try this:
In your vc :

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];

    self.mainSlideMenu.panGesture.enabled = NO;
}

- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];

    self.mainSlideMenu.panGesture.enabled = YES;
}

//...
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    return YES;
}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{

}

from amslidemenu2.

arturdev avatar arturdev commented on July 19, 2024

are you sure that you enabled editing mode for your tableView?

from amslidemenu2.

sisto avatar sisto commented on July 19, 2024
   [cell setUserInteractionEnabled:TRUE];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

and

  • (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
    return YES;}

    without AMSLIDEMenu on swipe left appear RED delete button

from amslidemenu2.

amidabrian51 avatar amidabrian51 commented on July 19, 2024

I can't seem to edit my UITableView with AMSlidemenu. Tried entering the code above and this did not work. What am I missing.

from amslidemenu2.

jhoneylopes avatar jhoneylopes commented on July 19, 2024

I'm using iOS 8, I was with the same problem.
I solved that, I'm using the following code. I don't know if this affect anything else, but It's working fine for me to edit the UITableViewCell.

steps:

  1. Go to AMSlideMenuMainViewController.m
  2. Find the follow method:
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
  1. Change the "if (directionIsLeft)"
    if (directionIsLeft) {
        // My CODE #### Enable edit cell
        self.panGesture.enabled = NO;
        self.panGesture.enabled = YES;
        // end
        if (self.rightMenu) {
            return NO;
         } else {
             return YES;
         }
    }

from amslidemenu2.

ingouackaz avatar ingouackaz commented on July 19, 2024

Thank you so much !
@jhoneylopes :)

from amslidemenu2.

soner-yuksel avatar soner-yuksel commented on July 19, 2024

@jhoneylopes :)

Thanks man, I was pulling my hair out of my skull.

from amslidemenu2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.