Unreleased
- Improve
+[UIColor colorWithHex:]
to accepts0x
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
- Use strong and unsafe_unretained instead of retain and assign
- Require ARC in podspec - @fictorial
- Some small fixes to localizable strings - @massimoperi
- 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 anil
reuseIdentifier
. This used to be anNSLog
. It was changed to an assert because you really need to provide one or your performance will be just awful. Be user to addNS_BLOCK_ASSERTIONS
in your release build to avoid crashing just incase you missed one somewhere. - Add
deepMutableCopy
toNSDictionary
andNSArray
- 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
- Fix bug in HUD view not dismissing
- Fix leak in collection view
- Move SSCollection view to it's own repo
-
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;
- Initial release