#define detal 80;// 按钮间距#import "ZZMenuView.h"@interface ZZMenuView()@property (nonatomic, strong) NSMutableArray *items;@property (weak, nonatomic) I...
分类:
其他好文 时间:
2016-01-11 23:35:40
阅读次数:
230
1.UILable的一个属性?答:@property(nullable, nonatomic,copy) NSString *text; //可以设置和取出标签内容.2.NSString的一个类方法?答:-(void)demo { int num = 123456; NSStrin...
分类:
其他好文 时间:
2016-01-11 06:49:56
阅读次数:
224
@interface ViewController ()@property (nonatomic, strong) UIWebView *webView;@end@implementation ViewController- (void)viewDidLoad { [super viewDidLo....
分类:
Web程序 时间:
2016-01-09 22:55:55
阅读次数:
247
场景:Person类@interface Person : NSObject@property (nonatomic, copy) NSString *name;@property (nonatomic, copy) NSString *surname;@property (nonatomic, s...
分类:
编程语言 时间:
2016-01-09 18:24:51
阅读次数:
153
UISlider常用属性1.@property(nonatomic) float value; // default 0.0. this value will be pinned to min/max2.@property(nonato...
分类:
其他好文 时间:
2016-01-08 21:49:23
阅读次数:
275
1 #import 2 3 @interface DataModel : NSObject 4 5 @property (nonatomic, copy) NSString *name; 6 @property (nonatomic, copy) NSString *address; 7 ...
分类:
移动开发 时间:
2016-01-08 18:37:52
阅读次数:
822
UIImageView常用属性设置图片 @property (nullable, nonatomic, strong) UIImage *image; // default is nil设置用户交互 @property (nonatomic, getter=isUserInteractionEnab...
分类:
其他好文 时间:
2016-01-08 17:07:24
阅读次数:
209
一、Model 1 #import 2 3 @interface Goods : NSObject 4 5 @property (nonatomic, copy) NSString *icon; 6 @property (nonatomic, copy) NSString *title; 7 ...
分类:
移动开发 时间:
2016-01-07 21:26:40
阅读次数:
371
#import"ViewController.h"#import"JWApp.h"#import"JWAppView.h"@interfaceViewController()@property(strong,nonatomic)NSArray *appDatas;@end@implementatio...
分类:
其他好文 时间:
2016-01-07 10:04:15
阅读次数:
177
延续:iOS开发基础-图片切换(1),对(1)里面的代码进行改善。在ViewController类中添加新的数组属性: @property (nonatomic, strong) NSArray *infoArray; //存放图片信息 通过self.infoArray的getter方法对其实现.....
分类:
移动开发 时间:
2016-01-06 21:38:23
阅读次数:
182