Tuesday, September 22, 2009
Fenyes gombok keszitese
Tuesday, September 15, 2009
Andy Finnell: Don’t lose your keys
Andy Finnell: [UIImage imageNamed:] is a memory leak
Monday, September 7, 2009
Core Data save hiba es NSError Array (1560) kiiratasa
UIImage betoltese bundle-bol
[UIImage imageWithContentsOfFile:
[[NSBundle mainBundle]
pathForResource:@"thefilename"
ofType:@"jpg"]];
Glyphysh - 120 icons for iPhone applications
UIImage trukkok
NSData *imageData = [[NSData alloc] initWithContentsOfFile:filePath];
UIImage *img = [[UIImage alloc] initWithData:imageData];
UIGraphicsBeginImageContext(CGSizeMake(75.0,75.0));
[img drawInRect:CGRectMake(0.0, 0.0, 75.0, 75.0)];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
NSData *thumbData = UIImageJPEGRepresentation(newImage, 0.5);
[thumbData writeToFile:thumbPath atomically:YES];
- Combine 2 UIImages
- Create a UIImage from a part of another UIImage
- Save UIImage to Photo Album
Thursday, September 3, 2009
UITableViewCell beszurasa UITableView-ba
[self.tableView insertRowsAtIndexPaths:myObject withRowAnimation:UITableViewRowAnimationFade];
[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:YES];