Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: romaonthego/RETableViewManager
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: adrum/RETableViewManager
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Aug 13, 2015

  1. fixed invalid next responder check if not found

    A bug exists when indexPathForNextResponderInSectionIndex: on RETableViewCell.m if the sections do not match. If not, the value is set to -1. The for loop below automaticall adds 1 to the unsigned -1, which makes it 0. Thus, the for loop condition was met when it shouldn't have been.
    
    By setting it to -2 then subtracting the number of items in the section, the for loop conidition will never be met when the section is not equal.
    adrum committed Aug 13, 2015
    Configuration menu
    Copy the full SHA
    5d3bd3b View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2015

  1. added editing accessory view

    adrum committed Aug 18, 2015
    Configuration menu
    Copy the full SHA
    4ae6959 View commit details
    Browse the repository at this point in the history
Loading