UIView 封装 - 01

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

//
//  MBApp.h
//  01-AppManagement
//
//  Created by zhouxg on 10/22/15.
//  Copyright © 2015 zhouxg. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface MBApp : NSObject
/**
 *  名称
 */
@property (nonatomic ,strong) NSString *name;
/**
 *  图标
 */
@property (nonatomic ,strong) NSString *icon;

+(instancetype)appWithDict:(NSDictionary *)dict;
-(instancetype)initWithDict:(NSDictionary *)dict;
@end