Skip to content

Latest commit

 

History

History
78 lines (48 loc) · 3.3 KB

Changelog.markdown

File metadata and controls

78 lines (48 loc) · 3.3 KB

SSToolkit Changelog

Version 1.0.2

Unreleased

  • Improve +[UIColor colorWithHex:] to accepts 0x along with # as a valid prefix - @alexanderzats
  • Add -[UIControl setTarget:action:forControlEvents:] method that allows setting exclusive handler and removing all previously registered actions - @alexanderzats
  • Performance optimization -[UIView firstSuperviewOfClass:] method - @alexanderzats
  • Add -[NSNumber dateValue] method that returns an instance of NSDate with current number as a timestamp - @alexanderzats

Version 1.0.1

Released May 25, 2012

  • Use strong and unsafe_unretained instead of retain and assign
  • Require ARC in podspec - @fictorial
  • Some small fixes to localizable strings - @massimoperi

Version 1.0.0

Released May 21, 2012

  • Move to ARC
  • Add rowBackgroundColor to SSCollectionView. This is useful for having a texture background color on the collection view and preventing the internal UITableView from using it as the background color of each row.
  • Add NSAssert in SSCollectionView for a nil reuseIdentifier. This used to be an NSLog. It was changed to an assert because you really need to provide one or your performance will be just awful. Be user to add NS_BLOCK_ASSERTIONS in your release build to avoid crashing just incase you missed one somewhere.
  • Add deepMutableCopy to NSDictionary and NSArray
  • Add cellImageForKey: to SSPickerViewController - @greenisus
  • Add rowBackgroundColor to SSCollectionView
  • Improve NSDate ISO8601 category to support timezones
  • Add NSDate category for converting a date to a short string (similar to Tweetbot) localized in 15 languages
  • Add SSRateLimit
  • Add SSButton
  • Lots of bug fixes

Version 0.1.2

Released October 31, 2011

  • Fix bug in HUD view not dismissing
  • Fix leak in collection view
  • Move SSCollection view to it's own repo

Version 0.1.1

Released October 18, 2011

  • Added SSCollectionViewItemAnimation to SSCollectionView

  • Added basic tests

  • Documented SSCollectionViewDataSource

  • Documented SSCollectionViewDelegate

  • Added - (NSArray *)visibleItems to SSCollectionView

  • Added - (NSArray *)indexPathsForVisibleRows to SSCollectionView

  • Added begin/end updates to SSCollection with the following methods:

      - (void)beginUpdates;
      - (void)endUpdates;
      - (void)insertItemsAtIndexPaths:(NSArray *)indexPaths withItemAnimation:(SSCollectionViewItemAnimation)animation;
      - (void)deleteItemsAtIndexPaths:(NSArray *)indexPaths withItemAnimation:(SSCollectionViewItemAnimation)animation;
      - (void)insertSections:(NSIndexSet *)sections withItemAnimation:(SSCollectionViewItemAnimation)animation;
      - (void)deleteSections:(NSIndexSet *)sections withItemAnimation:(SSCollectionViewItemAnimation)animation;
    

Version 0.1.0

Released October 17, 2011

  • Initial release