Skip to content

Instantly share code, notes, and snippets.

@dread-pirate-bob
dread-pirate-bob / gist:2f8b5d94130f15aeb52a
Created March 3, 2016 02:59
Null Bitmap Crash Pokememe Gold 0
03-02 18:22:42.005 16895-16895/? V/PokeMon: Storing bitmap to: crop.jpg
03-02 18:22:42.011 16895-16895/? W/System.err: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean android.graphics.Bitmap.compress(android.graphics.Bitmap$CompressFormat, int, java.io.OutputStream)' on a null object reference
03-02 18:22:42.014 16895-16895/? W/System.err: at com.notwithoutus.pokememe.BaseActivity.storeBitmapToFile(BaseActivity.java:397)
03-02 18:22:42.015 16895-16895/? W/System.err: at com.notwithoutus.pokememe.BaseActivity.storeBitmapToFile(BaseActivity.java:380)
03-02 18:22:42.015 16895-16895/? W/System.err: at com.notwithoutus.pokememe.SelectorActivity.onActivityResult(SelectorActivity.java:473)
03-02 18:22:42.015 16895-16895/? W/System.err: at android.app.Activity.dispatchActivityResult(Activity.java:6223)
03-02 18:22:42.015 16895-16895/? W/System.err: at android.app.ActivityThread.deliverResults(ActivityThread.java:3641)
03-02 18:22:42.015 16895-16895/? W/System.err: at
@dread-pirate-bob
dread-pirate-bob / UITableVIewBoilerplate.m
Created January 19, 2014 04:36
UITableView Boilerplate
#pragma mark - TableView DataSource
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 50.0;
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {