forked from alinebee/Boxer
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged Boxer-Bundler project into mainline Boxer to simplify deployment.
- Loading branch information
Showing
16 changed files
with
7,139 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// BBAppDelegate+AppExporting.h | ||
// Boxer Bundler | ||
// | ||
// Created by Alun Bestor on 25/08/2012. | ||
// Copyright (c) 2012 Alun Bestor. All rights reserved. | ||
// | ||
|
||
#import "BBAppDelegate.h" | ||
|
||
@interface BBAppDelegate (AppExporting) | ||
|
||
//Begin asynchronously creating a new app at the specified destination URL. | ||
//completionHandler is called upon completion, with the resulting URL and nil (if successful) | ||
//or nil and an error representing the reason for failure (if unsuccessful). | ||
- (void) createAppAtDestinationURL: (NSURL *)destinationURL | ||
completion: (void(^)(NSURL *appURL, NSError *error))completionHandler; | ||
|
||
//Synchronously create a new app at the specified destination URL, using our current parameters. | ||
//Returns the URL of the generated app, or nil and populates outError upon failure. | ||
//This method can safely overwrite an existing app at destinationURL; if the app creation fails, | ||
//any existing app will be left untouched. | ||
- (NSURL *) createAppAtDestinationURL: (NSURL *)destinationURL | ||
error: (NSError **)outError; | ||
|
||
@end |
Oops, something went wrong.