This is a collection of a few UIKit API's simplified.Also see the includled Example Project on how to use all the APIs.

A simple to use, easy to customize activity view. Example:
[[SimpleActivityViewactivityViewWithTitle:@"Title"]presentActivityViewOnView:viewactivityBlock:^(SimpleActivityView *activityView, SimpleActivityViewDismissBlock dismissBlock) {// do something that takes a whiledismissBlock();// call to dismiss the view again}];
A simplified API to schedule local notifications. Example:
[[SimpleLocalNotificationsharedInstance]scheduleLocalNotificationWithAlertBody:@"Notification Text"timeIntervalFromNow:60*5// in 5 minutesuniqueIdentifier:@"001"completion:nil];
A simplified tableView API. Great for simple static tableViews.The biggest benefit is, that the definition of the cell, as well as it'saction are in close proximity, which makes it very readable.It's also super easy to move rows between rows etc. without spendingthoughts on indexPath's etc.'
Example on how do define a simple row including its tap handler:
[STVRowrowWithCellReuseIdentifier:reuseIdentifiertitle:@"Cell Title"subtitle:nilconfigureCellBlock:nildidSelectBlock:^(STVRow *STVRow, UITableViewCell *cell, UITableView *tableView,NSIndexPath *indexPath) {// tap handler}];
A simplified API to present Alerts and ActionSheets.Example for a simple confirmation alert:
[UIAlertControllerpresentFromViewController:viewControllerwithTitle:@"Alert Title"message:@"Alert Message"confirmationButtonTitle:@"Ok"];
A simplified API to add motion effects to your views. Example:
[viewaddMotionEffectWithMovement:CGPointMake(100,100)];
Read more
A simple API to modify NSMutableAttributedString instances. Example:
[mutableStringsetFont:[UIFontboldSystemFontOfSize:textSize]color:[UIColororangeColor]forRangeOfString:@"Judy Hopps"];
A simple UIView cateogry for simplified layouting/positioning of views. Examples:
view.frameOrigin = CGPointMake(100,100);anotherView.frameRight = self.frameWidth -20;thirdView.centerX = self.frameWidth /2.0;