
积累
文章平均质量分 80
yxcharles
just do IT
展开
-
封装SlideQQ样式
// 最近模仿网上的一个demo,并且给其优化和封装了一下。 并打上了英文注释,秀一把英文。// ViewController.h#import @class LeftViewController;@class RightViewController;@class MainViewController;@interface ViewController : UIViewContr原创 2015-09-29 20:42:08 · 391 阅读 · 0 评论 -
相册读取照片UIImagePickController
#import "ViewController.h"#import #import @interface ViewController () @property (nonatomic, weak) IBOutlet UIImageView *imageView;@property (nonatomic, weak) IBOutlet UIButton *takePicButton;原创 2015-09-29 20:50:25 · 775 阅读 · 0 评论 -
PickView简单的依赖
#import "YXDependentComponentPickerViewController.h"#define kStateComponent 0#define kZipComponent 1@interface YXDependentComponentPickerViewController () @property (weak, nonatomic) IBOutlet U原创 2015-09-29 21:20:15 · 428 阅读 · 0 评论 -
自定义Tabbar封装
// 1. CustomTabbar.h#import @interface CutomTabBar : UIView@property (nonatomic,strong) NSArray *images;@property (nonatomic,strong) NSArray *seletedImages;@property (nonatomic,strong) NSArray原创 2015-09-29 20:35:10 · 467 阅读 · 0 评论 -
iOS开发证书
iOS 证书分两种类型.第一种为$99美元的,这种账号有个人和公司的区别,公司账号能创建多个子账号,但个人的不能。这种账号可以用来上传app store第二种为¥299美元的,这种账号只能用于企业内部使用,不能用来上传app store .也就是常说的in-house证书(用这种证书打出来的包能在任何iOS设备上运行,不需要苹果的验证、签名)--不要误解了这种账号即能上传app store转载 2015-10-18 12:47:24 · 531 阅读 · 0 评论 -
info.plist
// XCode工程中的info.plist文件详解// info.plist/** * 1. Application requires iPhone environment:如果不能在iPad或者iTouch上运行,要写True * 2. Bundle display name: 这用于设置应用程序的名称,它显示在iPhone屏幕的图标下方 * 3. Bundle id原创 2015-10-06 20:09:49 · 1906 阅读 · 0 评论