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
Oct 18 17:48:11 unknown BugSenseDemo[176] <Warning>: BugSense --> Symbols are being retained... | |
Oct 18 17:48:11 unknown BugSenseDemo[176] <Warning>: BugSense --> Symbols have been retained. | |
Oct 18 17:49:22 unknown BugSenseDemo[176] <Warning>: BugSense --> Processing crash report... | |
Oct 18 17:49:22 unknown BugSenseDemo[176] <Warning>: BugSense --> Crashed on 2011-10-18 09:02:49 +0000, with signal SIGABRT (code #0, address=0x309c332c) | |
Oct 18 17:49:22 unknown BugSenseDemo[176] <Warning>: BugSense --> Generating JSON data from crash report... | |
Oct 18 17:49:22 unknown BugSenseDemo[176] <Warning>: BugSense --> Posting JSON data... | |
Oct 18 17:49:24 unknown BugSenseDemo[176] <Warning>: BugSense --> Server responded with status code: 200 |
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
[BugSenseController setLogMessagesCount:10]; | |
[BugSenseController setLogMessagesLevel:8]; |
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
[BugSenseController leaveBreadcrumb:@"DetailViewController"]; |
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
@try { | |
// some exception throwing code | |
} @catch (NSException *exc) { | |
NSDictionary *data = [NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects:@"sample-value", nil] | |
forKeys:[NSArray arrayWithObjects:@"sample-key", nil]]; | |
BUGSENSE_LOG(exc, data); | |
} |
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
- (BOOL) application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { | |
[BugSenseController sharedControllerWithBugSenseAPIKey:@"<Your BugSense API Key>" | |
userDictionary:nil | |
sendImmediately: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
- (BOOL) application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { | |
NSDictionary *aNiceLittleDictionary = [NSDictionary dictionaryWithObjectsAndKeys:@"myObject", @"myKey", nil]; | |
[BugSenseController sharedControllerWithBugSenseAPIKey:@"<Your BugSense API Key>" | |
userDictionary:aNiceLittleDictionary]; | |
//... | |
} |
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
public void onCreate() { | |
BugSenseHandler.setup(context, YOUR_API_KEY); | |
} |
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
@lightblue:#a9c6d2; | |
.cloudstyle(){ | |
content: ''; | |
position: absolute; | |
background: @lightblue; | |
z-index: -1 | |
} //every Cloud has this style | |
#cloud { |
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
#cloud { | |
width: 350px; | |
height: 120px; | |
background: #a9c6d2; | |
border-radius: 100px; | |
-webkit-border-radius: 100px; | |
-moz-border-radius: 100px; | |
position: relative; | |
margin: 120px auto 20px; | |
} |
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
a{ | |
color:@pinky; | |
&:hover{ | |
opacity:0.7; | |
} | |
} |