MBRequest
MBRequest is a simple networking library for iOS and OS X. It uses a blocks-based API built on top of NSURLConnection and NSOperation. MBRequest follows the style of Apple's CLGeocoder class to create simple, easy-to-use classes that encapsulate the entire network request. The goals of MBRequest are as follows:
- Create the simplest possible API for making network requests. With only a few lines of code, developers should be able to start a network request and pass along a single block for handling the results of that particular request.
- Give developers an extremely simple way to create their own CLGeocoder-like classes. These subclasses should only need to set up the request and parse the response.
- Do not force a particular implementation strategy such as singletons, "engines", or "clients". Instead, whittle the API down to the basics and let developers work with it however they wish.
Requirements
MBRequest runs on iOS 5.0 and above and OS X 10.7 and above.
Usage
To include MBRequest in your applications, clone the MBRequest repository and include all of the MBRequest source files in your project.
$ git clone git://github.com/mobiata/MBRequest.git
To reference any of the functionality defined in MBRequest, simply #import "MBRequest.h"
at the top of your source file.
Basic JSON Example
It is possible to use MBJSONRequest
to quickly grab JSON data at any URL. For example, the following code will print out the titles and authors of the top-rated YouTube videos of the past week:
NSURL *url = [NSURL URLWithString:@"https://gdata.youtube.com/feeds/api/standardfeeds/top_rated?alt=json&time=this_week"];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
MBJSONRequest *jsonRequest = [[MBJSONRequest alloc] init];
[jsonRequest performJSONRequest:urlRequest completionHandler:^(id responseJSON, NSError *error) {
if (error != nil) {
NSLog(@"Error requesting top-rated videos: %@", error);
} else {
NSArray *videos = [[responseJSON objectForKey:@"feed"] objectForKey:@"entry"];
for (NSDictionary *videoInfo in videos) {
NSString *title = [[videoInfo objectForKey:@"title"] objectForKey:@"$t"];
NSString *author = [[[[videoInfo objectForKey:@"author"] objectAtIndex:0] objectForKey:@"name"] objectForKey:@"$t"];
NSLog(@"'%@' by %@", title, author);
}
}
}];
Interesting Classes
If you want to incorporate MBRequest, you will likely find the following classes interesting:
MBBaseRequest
— The basic request object.MBHTTPRequest
— A subclass ofMBBaseRequest
that handles HTTP requests.MBJSONRequest
— A subclass ofMBHTTPRequest
that deals directly with JSON data.MBImageRequest
— A subclass ofMBHTTPRequest
that handles the downloading of remote images.MBXMLRequest
— A subclass ofMBHTTPRequest
that handles the downloading and parsing of XML data.MBMultipartFormData
— A class that helps with the creation of multipart form data.
To create your own requests, you will most likely want to subclass one of the above classes.
Custom Request Subclass
Even though it is possible to download JSON data directly with MBJSONRequest
(as shown in the above example), it is highly recommended that you create your own MBJSONRequest
subclass that handles the specific request for you. This will make your code more modular and much more readable (and will make your class look and act like Apple's CLGeocoder
class). It would be silly to force everyone who wants to perform a request to understand how to setup that particular request as well as parse the data that they need out of the resulting JSON object. So, let's take the previous example and instead create an MBRYouTubeRequest
class:
Using this class would simplify the above example as follows:
MBRYouTubeRequest *request = [[MBRYouTubeRequest alloc] init];
[request requestTopRatedVideosFromIndex:1
maxResults:20
completionHandler:^(NSArray *videos, NSError *error) {
if (error != nil) {
NSLog(@"Error: %@", error);
} else {
for (MBRVideo *video in videos) {
NSLog(@"'%@' by %@", [video title], [video author]);
}
}
}];
ARC Support
MBRequest uses ARC (Automatic Reference Counting). If you are not using ARC in your own projects, you will need to set the -fobjc-arc
compiler flag on all MBRequest files. To do this:
- Launch Xcode for your project.
- Navigate to the "Builds Phases" tab of your target(s).
- Find all MBRequest source files and add
-fobjc-arc
to the "Compiler Flags" column.
App Extensions
When using MBRequest in an App Extension, #define APPLICATION_EXTENSION_API_ONLY
to avoid using unavailable APIs. If using MBRequest in both an App Extension and a Containing App, make sure to set the sharedApplication
property on MBNetworkActivityIndicatorManager
in your appDelegate to [UIApplication sharedApplication]
. Doing so will ensure that the indicator displays properly in your Containing App.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[MBNetworkActivityIndicatorManager sharedManager] setSharedApplication:[UIApplication sharedApplication]];
...
}
Localization
MBRequest defines a few strings that could theoretically be shown to users. These are most often error messages placed into the userInfo
dictionary of NSError
objects. MBRequest uses the MBRequestLocalizedString
macro to try and find translated versions of these strings for your users. This macro gives you a couple of choices if you decide to localize your application for languages other than English. MBRequestLocalizedString
is defined as follows:
#ifdef MBRequestLocalizationTable
#define MBRequestLocalizedString(key, default) \
[[NSBundle mainBundle] localizedStringForKey:(key) value:(default) table:MBRequestLocalizationTable]
#else
#define MBRequestLocalizedString(key, default) \
[[NSBundle mainBundle] localizedStringForKey:(key) value:(default) table:nil]
#endif
The first parameter of this macro is the string key while the second is the default (English) translation.
This macro allows you to add MBRequest strings directly to your standard Localizable.strings
file. Or, if you wish, you can put all MBRequest strings into their own .strings
file. If you opt for the latter, you must define MBRequestLocalizationTable
to be the name of this file. For example, if you want to use a file called MBRequest.strings
, you would add the following to the Prefix.pch
file of your project:
#define MBRequestLocalizationTable @"MBRequest"
You can look for all strings used by MBRequest by searching for references to MBRequestLocalizedString
in this project. You should see a number of hits like the following:
NSString *msg = MBRequestLocalizedString(@"request_unsuccessful_could_not_download_image", @"Request failed. Unable to download image.");