This repository was archived by the owner on Feb 16, 2019. It is now read-only.
Releases: soffes/sstoolkit
Releases · soffes/sstoolkit
Version 1.0.4
Version 1.0.3
Version 1.0.3
Version 1.0.2
- Improve
+[UIColor colorWithHex:]to accepts0xalong 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
- Use strong and unsafe_unretained instead of retain and assign
- Require ARC in podspec - @fictorial
- Some small fixes to localizable strings - @massimoperi
One Point Oh
- Move to ARC
- Add
rowBackgroundColorto 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
NSAssertin SSCollectionView for anilreuseIdentifier. 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_ASSERTIONSin your release build to avoid crashing just incase you missed one somewhere. - Add
deepMutableCopytoNSDictionaryandNSArray - Add
cellImageForKey:to SSPickerViewController - @greenisus - Add
rowBackgroundColorto 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
- Fix bug in HUD view not dismissing
- Fix leak in collection view
- Move SSCollection view to it's own repo
Version 0.1.1
-
Added
SSCollectionViewItemAnimationto SSCollectionView -
Added basic tests
-
Documented SSCollectionViewDataSource
-
Documented SSCollectionViewDelegate
-
Added
- (NSArray *)visibleItemsto SSCollectionView -
Added
- (NSArray *)indexPathsForVisibleRowsto 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
Initial release of SSToolkit.