摘要:
来自IOS7 by tutorials 下面是个人的一点翻译总结 1,首先在初始化方法李画一个方块UIView* square = [[UIViewalloc]initWithFrame:CGRectMake(100,100,100,100)];square.backgroundColor= [... 阅读全文
摘要:
1,@property (nonatomic,readwrite)NSInteger score;注意这里有一个只读和只写的属性,readonly.2,重写初始化方法也可以改名字和传参数,(改名一般以initWith开头),-(instancetype) initWithCardCount:(NSU... 阅读全文
摘要:
1,OC里面传参数个数不同,可以是两个完全不同的方法。如- (void)addCard:(Card *)card atTop:(BOOL)atTop;- (void)addCard:(Card *)card;第二个方法可以这样实现- (void)addCard:(Card *)card{ [self... 阅读全文
摘要:
1,引入文件,#import IOS7 中可以这样写@import Foundation;2,在.h文件引入的是公用的,在.m文件里面引用的是本类私有的。私有属性声明@interface Card()//在这里面声明@property (strong) NSString *contents;@end... 阅读全文
摘要:
1,睡眠方法。[NSThread sleepForTimeInterval:3];关于程序睡眠这里收集了两种方法,看下面代码- (IBAction)setButton:(id)sender { _label.text = @"对方正在思考"; [self performSelector:@sele... 阅读全文
摘要:
1,播放短音频#import #import "GLYViewController.h"static void completionCallback(SystemSoundID mySSID){ AudioServicesPlaySystemSound(mySSID);}@interface ... 阅读全文
摘要:
NSDate * date = [NSCalendarDate date]; NSLog(@"%@", date);日历在IOS里报错,,。 NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter ... 阅读全文
摘要:
//向下个视图传值#pragma mark - Navigation- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{//你连接的 identifier 的内容 if ([[segue identifier] ... 阅读全文
摘要:
// IOS相应路径 NSString* bundlePath = [[NSBundle mainBundle] bundlePath]; NSLog(@"bundlePath = %@", bundlePath);// documents NSString* documentsDirec... 阅读全文
摘要:
刚刚遇到的两个错误,。1,Terminating app due to uncaught exception'NSGenericException', reason: 'Push segues can only be used when the sourcecontroller is managed... 阅读全文