笔记

1.在info中的bundle name修改app的名称

 2.修改自定义返回按钮的位置,用button.contentEdgeInsets = UIEdgeInSetsMake(),但是返回按钮不能监听点击,必须添加addtarget监听点击

3.自定义返回按钮之后左滑删除功能就会失效,这时需要在viewdidload中清空手势代理,就会重新出现,即self.interactivePopGestureRecognizer.delegate = nil;

4.使用源代码管理工具时,提交静态库必须用命令行工具提交

5.在XIB或storyboard中在label中让文字换行,按住option+return就会自动换行,在代码中加\n就会换行

6. #define SLWTest(name)  @#name  ,一个#相当于@“name”  #define SLWTest(name)  test##name 会把testname拼接在一起

7.  int * const p1; // p1是常量,*p1是变量       

 int const * p2; // p2是变量,*p2是常量       

 const int * p3; // p3是变量,*p3是常量       

 const int * const p4; // p4是常量,*p4是常量        

int const * const p5; // p5是常量,*p5是常量

8, #ifdef DEBUG 

 #define SLWLog(...) NSLog(__VA_ARGS__)    

#else  

 #define SLWLog(…) 

 #endif

extern 引用一个全局变量,同一个变量共享一块内存,

10, 

static的作用 

1.修饰局部变量 

1> 并没有改变局部变量的作用域,还是局部才能访问 

2> 可以让局部变量在整个程序运行过程中只有一份内存,只会初始化1次 

 2.修饰全局变量 

1> 让这个全局变量仅限于当前文件能访问(哪个文件:定义这个全部变量的文件)

11,

定义全局变量 

在SLWConst.h中

// 引用全局常量

#import

/** 请求路径 */

UIKIT_EXTERN NSString * const XMGBaseURL;

/** 统一的间距常量 */

UIKIT_EXTERN CGFloat const XMGMargin;

SLWConst.m中

// 定义全局常量(赋值)

#import

/** 请求路径 */

NSString * const XMGBaseURL = @"http://api.budejie.com/api/api_open.php";

/** 统一的间距常量 */

CGFloat const XMGMargin = 10;


12,      

// 为了使网络请求没有回来,关闭控制器也可以让网络请求取消.如果不这样写关闭控制器还是会发送网络请求

__weak typeof(self) weakSelf = self;

13,计算总行数/总页数

rows = {count(总个数) + totalcolCount(总列数) - 1}/totalcolCount

14,获得文件大小的两种方法

如果NSFileType = NSFileTyperegular则是文件,是NSFileTypeDirectory则是文件夹

// 获得文件夹中的所有内容

// contentsOfDirectoryAtPath:error:方法只能获得直接子路径(子路径的子路径不会被获取到)

NSArray *contents = [mg contentsOfDirectoryAtPath:file error:nil];

subpathsAtPath:方法能获得所有的子路径(包括子路径的子路径)

- (void)getFileSize2

{

// Caches路径

NSString *caches = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];

// SDWebImage缓存路径

NSString *file = [caches stringByAppendingPathComponent:@"default/com.hackemist.SDWebImageCache.default"];

NSFileManager *mgr = [NSFileManager defaultManager];

// 文件夹总大小

NSInteger size = 0;

// 获得文件夹的便利器:可以遍历这个文件夹下面的所有子路径

NSDirectoryEnumerator *fileEnumerator = [mgr enumeratorAtPath:file];

//    NSString *subpath = nil;

//    while ((subpath = fileEnumerator.nextObject) != nil) {

//        // 获得文件的全路径

//        NSString *fullSubpath = [file stringByAppendingPathComponent:subpath];

//

//        // 获得属性

//        NSDictionary *attrs = [mgr attributesOfItemAtPath:fullSubpath error:nil];

//        // 过滤掉文件夹

//        if ([attrs[NSFileType] isEqualToString:NSFileTypeDirectory]) continue;

//

//        size += [attrs[NSFileSize] integerValue];

//    }

for (NSString *subpath in fileEnumerator) {

// 获得文件的全路径

NSString *fullSubpath = [file stringByAppendingPathComponent:subpath];

// 获得属性

NSDictionary *attrs = [mgr attributesOfItemAtPath:fullSubpath error:nil];

// 过滤掉文件夹

if ([attrs[NSFileType] isEqualToString:NSFileTypeDirectory]) continue;

size += [attrs[NSFileSize] integerValue];

}

XMGLog(@"%zd", size);

}

- (void)getFileSize

{

//    XMGLog(@"%zd", [SDImageCache sharedImageCache].getSize);

// Caches路径

NSString *caches = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];

// SDWebImage缓存路径

NSString *file = [caches stringByAppendingPathComponent:@"default/com.hackemist.SDWebImageCache.default"];

NSFileManager *mgr = [NSFileManager defaultManager];

// 文件夹总大小

NSInteger size = 0;

// 获得文件夹中的所有内容

// contentsOfDirectoryAtPath:error:方法只能获得直接子路径(子路径的子路径不会被获取到)

//    NSArray *contents = [mgr contentsOfDirectoryAtPath:file error:nil];

// subpathsAtPath:方法能获得所有的子路径(包括子路径的子路径)

NSArray *subspaths = [mgr subpathsAtPath:file];

for (NSString *subpath in subspaths) {

// 获得文件的全路径

NSString *fullSubpath = [file stringByAppendingPathComponent:subpath];

// 判断一个文件是否存在、并且可以判断一个文件是文件夹还是文件类型

//        BOOL isDirectory = NO;

//        [mgr fileExistsAtPath:fullSubpath isDirectory:&isDirectory];

//        if (isDirectory) continue;

// 获得属性

NSDictionary *attrs = [mgr attributesOfItemAtPath:fullSubpath error:nil];

// 过滤掉文件夹

if ([attrs[NSFileType] isEqualToString:NSFileTypeDirectory]) continue;

size += [attrs[NSFileSize] integerValue];

}

XMGLog(@"%zd", size);

}

15, 设置原则:先设置尺寸,再设置位置,否则会有影响

16,当点击按钮不让它高亮状态,可以设置为失效状态,或自定义按钮重写- (void)setHighlighted:(BOOL)highlight;方法,里面什么都不用写就可以实现

17,// block的三种用法;

// 第一种

// 定义属性: 返回值类型 (^属性名)(参数类型列表)

@property (nonatomic, copy) int (^block)(int, int);

// 第二种

// 定义方法\函数参数: (返回值类型 (^)(参数类型列表))参数名

- (void)testBlock:(int (^)(int, int))block

{

}

// 第三种

// 定义普通变量: 返回值类型 (^变量名)(参数类型列表)

int (^block)(int, int) = ^(int num1, int num2) {

return num1 + num2;

};

18,  调用setNeedsDisplay时会先把drawRect之前里面画的内容清除,再调用drawRect重新画出来

19, // 获得根控制器

UIViewController *root = self.window.rootViewController;

// 获得当前发表文字控制器,即根控制器modal出来的控制器

UIViewController *postWord = root.presentedViewController;

[postWord presentViewController:nav animated:YES completion:nil];

}

// A --Modal--> B

// A.presentedViewController == B

// B.presentingViewController == A

你可能感兴趣的:(笔记)