view · edit · sidebar · attach · print · history

20130813-update-generikacc-app-fix-image-file-path

<< | Index | >>


Summary

  • Fix some bugs.
  • Update file path to use ralative path.

Commits / Patches

Index / Status


Update PI snap link

Fixed to check saved count (before/after) for PI.
And, update to use first one from products.

link

commit

Fix image file path

for upgrade

# get correct (via home dir) absolute path
    DLog(@"barcodePath: %@", barcodePath);
    NSRange range = [barcodePath rangeOfString:@"/Documents/"];
    if (range.location != NSNotFound) {
      barcodePath = [NSString stringWithFormat:@"[Documents]/%@",
        [barcodePath substringFromIndex:range.location + range.length]];
      barcodePath = [barcodePath stringByReplacingOccurrencesOfString:@"[Documents]" withString:
        [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0]];
    }
# replace with tilde
DLog(@"barcodePath: %@", [barcodePath stringByAbbreviatingWithTildeInPath]);
commit

link


Fix indicator position

  • iPhone retina
  • landscape orientation
  • iPad

continue, tomorrow


Fix label layout

Fix label layout in settings view.

  • iPhone retina
  • iPad

continue, tomorrow


Learn about instance var and property

links

Note

viewDidUnload is deprecated from iOS 6.
use didReceiveMemoryWarning and dealloc.

commit
view · edit · sidebar · attach · print · history
Page last modified on August 13, 2013, at 11:42 AM