This file contains hidden or 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
@implementation UIViewController (Convenience) | |
- (void)mn_hideCurrentModalControllerAndPresentController:(UIViewController *)controller | |
{ | |
if (self.modalViewController) { | |
[self dismissModalViewControllerAnimated:YES]; | |
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC); | |
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){ | |
[self presentModalViewController:controller animated:YES]; | |
}); |
This file contains hidden or 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
v=`git log --pretty=format:'' | wc -l` | |
defaults write "${TARGET_BUILD_DIR}"/"${CONTENTS_FOLDER_PATH}"/Info CFBundleVersion $v |
This file contains hidden or 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
if (![[NSUserDefaults standardUserDefaults] valueForKey: @"CrashReportSender.lastCrashDate"]) { | |
[[NSUserDefaults standardUserDefaults] setValue: [NSDate date] | |
forKey: @"CrashReportSender.lastCrashDate"]; | |
} |
This file contains hidden or 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
Exception Type: SIGSEGV | |
Exception Codes: SEGV_ACCERR at 0x60000008 | |
Crashed Thread: 0 | |
Thread 0 Crashed: | |
0 libobjc.A.dylib 0x00003fbc objc_msgSend + 16 | |
1 UIKit 0x0001e0bf -[UIViewAnimationBlockDelegate _didEndBlockAnimation:finished:context:] + 215 | |
2 UIKit 0x0001881b -[UIViewAnimationState sendDelegateAnimationDidStop:finished:] + 471 | |
3 UIKit 0x0001dfb9 -[UIViewAnimationState animationDidStop:finished:] + 53 | |
4 QuartzCore 0x0002bba7 CA::Layer::run_animation_callbacks(void*) + 203 |
This file contains hidden or 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
- Fixes a launch issue related to loading cross connections. | |
- Fixes a launch issue related to error handling when failing to load a document. | |
- Fixes a crash when trying to export a document with only one main node to FreeMind. | |
- Fixes a crash when downloading or uploading a file to dropbox fails. | |
- Correctly draw rounded caps during image and PDF export. | |
- Draw cross connection during PDF export. | |
- Fixes an issue were lines where not fully drawn during PDF export. | |
- Correctly size image in the export format dialog. |
This file contains hidden or 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
defaults write com.mindnode.MindNodePro MNDefaultsIgnoreBackgroundWhenDrawingOffScreen YES |
This file contains hidden or 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
Incident Identifier: [TODO] | |
CrashReporter Key: [TODO] | |
Process: MindNode [1957] | |
Path: /var/mobile/Applications/5C216CA6-CCB6-414F-8E2A-FD79AA2C5FF1/MindNode.app/MindNode | |
Identifier: com.mindnode.mindnodetouch | |
Version: 1109 | |
Code Type: ARM (Native) | |
Parent Process: launchd [1] | |
Date/Time: 2554-10-30 17:36:11 +0000 |
This file contains hidden or 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
for (myObject in objects) { | |
[myObject doWithCallback: ^(BOOL success){ | |
// | |
}]; | |
} |
This file contains hidden or 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
// | |
// MNDocumentConflictResolutionViewController.h | |
// MindNodeTouch | |
// | |
// Created by Markus Müller on 15.12.11. | |
// Copyright (c) 2011 __MyCompanyName__. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
@class MNDocumentReference; |
This file contains hidden or 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
#0 0x0000adf2 in -[KKGridView _configureAuxiliaryView:inSection:withStickPoint:height:] at /Users/markusm/ScratchPad/KKGridView/KKGridView/KKGridView.mm:553 | |
#1 0x000098d8 in __33-[KKGridView _layoutVisibleCells]_block_invoke_0177 () | |
#2 0x328e6510 in +[UIView(UIViewAnimationWithBlocks) _setupAnimationWithDuration:delay:view:options:animations:start:completion:] () | |
#3 0x328e6310 in +[UIView(UIViewAnimationWithBlocks) animateWithDuration:delay:options:animations:completion:] () | |
#4 0x00008716 in -[KKGridView _layoutVisibleCells] () | |
#5 0x000060d6 in -[KKGridView _layoutGridView] () | |
#6 0x0000e320 in -[KKGridView insertItemsAtIndexPaths:withAnimation:] () | |
#7 0x00003c26 in -[GridViewDemoViewController addItems:] () | |
#8 0x3432d434 in -[NSObject performSelector:withObject:withObject:] () | |
#9 0x328de9ea in -[UIApplication sendAction:to:from:forEvent:] () |
OlderNewer