File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ - (instancetype)initWithCoder:(NSCoder *)aDecoder {
27
27
@" Invoke with different modes..." ,
28
28
@" Set primary color" ,
29
29
@" Show intro message" ,
30
- @" Show unread messages count"
30
+ @" Show unread messages count" ,
31
+ @" Crash me"
31
32
];
32
33
}
33
34
@@ -66,6 +67,8 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
66
67
[Instabug showIntroMessage ];
67
68
} else if (indexPath.row == 6 ) {
68
69
[self showUnreadMessagesCount ];
70
+ } else if (indexPath.row == 7 ) {
71
+ [self crashMe ];
69
72
}
70
73
71
74
[tableView deselectRowAtIndexPath: indexPath animated: YES ];
@@ -180,4 +183,8 @@ - (void)showUnreadMessagesCount {
180
183
[self presentViewController: alertController animated: YES completion: nil ];
181
184
}
182
185
186
+ - (void )crashMe {
187
+ [[[NSArray alloc ] init ] objectAtIndex: 100 ];
188
+ }
189
+
183
190
@end
You can’t perform that action at this time.
0 commit comments