我的大项目遇到了一些问题所以我创建了一个小项目用于测试目的。这是我的.h和.m文件。
ViewController.h:
#import <UIKit/UIKit.h>
#import <MediaPlayer/MediaPlayer.h>
@interface ViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
@property (strong, nonatomic) IBOutlet UITableView *table;
@end
ViewController.m:
#import "ViewController.h"
@interface ViewController () {
NSArray *lib;
NSMutableArray *artworks;
}
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
artworks = [NSMutableArray new];
lib = [[MPMediaQuery songsQuery] items];
for(NSUInteger i = 0 ; i < lib.count; i++){
[artworks addObject:[lib[i] valueForProperty:MPMediaItemPropertyArtwork]];
}
[_table setDelegate:self];
[_table setDataSource:self];
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return artworks.count;
}
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *item = @"a";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:item];
if(cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"a"];
}
[cell.textLabel setText:@"thing"];
[cell.imageView setImage:[artworks[indexPath.row] imageWithSize:CGSizeMake(100, 100)]];
return cell;
}
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
UIImage *img = [artworks[indexPath.row] imageWithSize:CGSizeMake(43, 43)];
NSLog(@"%@", img ? @"" : @"nil");
[cell.imageView setImage:img];
}
@end
基本上,我将所有MPMediaItemArtworks收集到NSMutableArray中。然后我想使用这个数组作为表的数据源。但是,在iOS 7上, imageWithSize 返回nil。在iOS 6上,一切都很完美。
这是比较的图像:
问题是:如何让它像在iOS 6上一样工作?
答案 0 :(得分:2)
看看我的开源播客应用。 http://github.com/DavidPhillipOster/podbiceps我可以在iOS 7和8下获得与您类似的代码。
MPMediaItemArtwork *artwork = cast.artwork;
UIImage *artworkImage = [artwork imageWithSize:cell.imageSize];
if (nil == artworkImage) {
CGSize actualSize = cast.artwork.bounds.size;
if (0 < actualSize.width && 0 < actualSize.height) {
artworkImage = [artwork imageWithSize:actualSize];
}
}