CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
NSString category divers helpers.
Create slug:
NSString *title = @"My title";
NSLog(@"%@", [title toSlug]); // return my-title
Count number occurences in string:
NSString *title = @"My title";
NSLog(@"%i", [title countOccurencesOfString:@"title"]); // return 1