Listing Icons now working. Nothing to select

This commit is contained in:
michael starke
2013-03-11 03:22:17 +01:00
parent 46636445a4
commit e573e461f1
7 changed files with 261 additions and 110 deletions

View File

@@ -7,6 +7,7 @@
//
#import "MPIconSelectViewController.h"
#import "MPIconHelper.h"
@interface MPIconSelectViewController ()
@@ -23,10 +24,13 @@
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
}
return self;
}
- (void)didLoadView {
[self.iconCollectionView setContent:[MPIconHelper availableIcons]];
}
@end