@interface AppDelegate ()
{
UIView *_containerView;
UILabel *_lable;
CGFloat _fristNum;
CGFloat _secondNum;
NSInteger _tempNum;
NSMutableString *_str;
}
@end...
分类:
其他好文 时间:
2014-08-22 10:58:46
阅读次数:
270
首先要创建AddressContact类,#import<Foundation/Foundation.h>//---------AddressContact的.h文件
@interfaceAddressContact:NSObject
{
NSString*_name;
NSString*_sex;
NSString*_phone;
NSString*_address;
NSString*_groupName;
NSInteger_age;
}
-(insta..
分类:
其他好文 时间:
2014-08-22 02:52:46
阅读次数:
168
MyScrollView.h@property (nonatomic,assign) NSInteger currentPage;@property (nonatomic,strong) NSInteger (^numberOfPage)(MyScrollView *);@property (non...
分类:
其他好文 时间:
2014-08-21 14:58:54
阅读次数:
166
在AppDelegate方法里,添加类方法+ (NSInteger)OSVersion;实现为+ (NSInteger)OSVersion{ static NSUInteger _deviceSystemMajorVersion = -1; static dispatch_once_t ...
分类:
移动开发 时间:
2014-08-20 12:12:22
阅读次数:
188
#import #define CHILD_WEAK_NOTIFC @"childe_week"@interface Child : NSObject@property (nonatomic,assign) int age;@property (nonatomic,assign) NSInteger...
分类:
移动开发 时间:
2014-08-19 00:47:13
阅读次数:
298
类的基本概念
类:具有相同特征和相同行为的事物的抽象
类是一个抽象的概念,在生活中不具体
对象,是类的实例,也就是类的具体体现,是具体的,生活中的万物都是对象
类的接口部分的定义,写在.h文件中
方法声明:
如 - (void)”方法返回类型” say ”方法名” :(NSInteger)”参数类型” x ”参数名” y ”参数名":(NSInteger)”参数类型”...
分类:
其他好文 时间:
2014-08-18 09:16:13
阅读次数:
271
1、首先先了解下NSNumber类型:苹果官方文档地址:https://developer.apple.com/library/ios/documentation/Cocoa/Reference/Foundation/Classes/NSNumber_Class/Reference/Referenc...
分类:
移动开发 时间:
2014-08-18 00:08:33
阅读次数:
274
当需要使用int类型的变量的时候,可以像写C的程序一样,用int,也可以用NSInteger,但更推荐使用NSInteger,因为这样就不用考虑设备是32位的还是64位的。可以看如下定义:#if__LP64__||(TARGET_OS_EMBEDDED&&!TARGET_OS_IPHONE)||TA...
分类:
移动开发 时间:
2014-08-17 02:19:51
阅读次数:
232
1,ios6屏幕旋转,所有被push出来的controller的旋转属性都由root controller中以下函数- (NSInteger)supportedInterfaceOrientations { return UIInterfaceOrientationMaskAll;}- (BOOL)...
分类:
其他好文 时间:
2014-08-15 19:24:39
阅读次数:
254
1.设置section的数目,即是你有多少个cell
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 3; // in your case, there are 3 cells
}
2.对于每个section返回一个cell
- (NSInteger)tableView:(UI...
分类:
移动开发 时间:
2014-08-12 22:08:04
阅读次数:
309