Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Log via NSLog only when debugging #7

Open
wants to merge 9 commits into
base: master
Choose a base branch
from

Commits on Dec 9, 2010

  1. Configuration menu
    Copy the full SHA
    e51de99 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2010

  1. Fix memory leaks.

    theory committed Dec 15, 2010
    Configuration menu
    Copy the full SHA
    89011e1 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2010

  1. Configuration menu
    Copy the full SHA
    a012251 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2011

  1. Assign, don't retain delegate.

    I have a controller that was storing a TwitterTweetPoster object and assigning
    itself as a delegate to the TwitterTweetPoster. However, because the
    TwitterTweetPoster was retaining its delegate, I ended up with a circular
    retain. The result was that the controller was never released from memory, and
    neither was the TwitterTweetPoster.
    
    Standard practice in iOS apps is to make delegate properties non-retaining.
    Looks like all the other delegates in this package use `assign`; it was just
    this one that did not.
    theory committed Jan 14, 2011
    Configuration menu
    Copy the full SHA
    51b5ffa View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2011

  1. Configuration menu
    Copy the full SHA
    8ccc30b View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2011

  1. Convert to ARC.

    theory committed Oct 20, 2011
    Configuration menu
    Copy the full SHA
    95cef8b View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2012

  1. Let the compiler create the ivars.

    Shoud fix compiler errors on Xcode 4.3.
    theory committed Feb 29, 2012
    Configuration menu
    Copy the full SHA
    0e8ae79 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2012

  1. Configuration menu
    Copy the full SHA
    3d618ff View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2012

  1. Configuration menu
    Copy the full SHA
    5c9092d View commit details
    Browse the repository at this point in the history