<< | Index | >>
Fixed to check saved count (before/after) for PI.
And, update to use first one from products.
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]);
continue, tomorrow
Fix label layout in settings view.
continue, tomorrow
viewDidUnload is deprecated from iOS 6.
use didReceiveMemoryWarning and dealloc.