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
| 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 |
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
| #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 { |