From now on you can fnd most of my software https://github.com/Blackjacx/Scripts/blob/master/software.sh
- Adobe Creative Cloud
- Apple Configurator
- Audiacity
- AudioSlicer
- FileZilla
- HockeyApp
- LibreOffice
From now on you can fnd most of my software https://github.com/Blackjacx/Scripts/blob/master/software.sh
/* | |
Create a temporary context with the default context as parent. | |
The state of the default context will be available in the temporary context. | |
If you are really sure you want to save the object you don't need to create a temporary context. | |
You can use MR_defaultContext in this case. | |
*/ | |
NSManagedObjectContext *tempContext = [NSManagedObjectContext MR_contextWithParent:[NSManagedObjectContext MR_defaultContext]]; | |
/* | |
Perform operations on the temporary context on the |
- (void)showHTMLRessourceInWebView:(BOOL)animated | |
{ | |
// Load html data from main bundle | |
NSString * filePath = [[NSBundle mainBundle] | |
pathForResource:@"<RESOURCE_NAME>" | |
ofType:@"html"]; | |
NSData * htmlData = [NSData dataWithContentsOfFile:filePath]; | |
if( !htmlData ) { |