Introduced Custom Image View for editing-popup

This commit is contained in:
michael starke
2013-03-11 00:50:04 +01:00
parent 5ab229b0e8
commit 5271381d5e
11 changed files with 732 additions and 13 deletions

View File

@@ -0,0 +1,27 @@
//
// MPIconSelectViewController.m
// MacPass
//
// Created by Michael Starke on 10.03.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import "MPIconSelectViewController.h"
@interface MPIconSelectViewController ()
@end
@implementation MPIconSelectViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Initialization code here.
}
return self;
}
@end