03 2016 档案
摘要:UITableViewAutomaticDimension is the default value for rowHeight, it is useful for understanding what is going on. Setting theestimatedRowHeight prope
阅读全文
摘要:首先,样子长得就不一样 看下图:
阅读全文
摘要:本博客为鄙人闲散时间做的笔记,因此难免表达简陋,原本是为自己所看。因本人工作繁忙,无法回答园友关于本人相关笔记的问题,还请各园友见谅! - Master HaKu 2016/03/30
阅读全文
摘要:不多说,看截图
阅读全文
摘要:init相当于构造函数 deinit相当于析构函数 调用的例子: 运行结果: I've been created!I was called with the convenience initializer
阅读全文
摘要:NSString *tempA = @"123"; NSString *tempB = @"456"; 1,字符串拼接 NSString *newString = [NSString stringWithFormat:@"%@%@",tempA,tempB]; 2,字符转int int intStr
阅读全文
摘要:新增: Ctrl + Alt + T(windows) Command + Option + T(Mac) 给语句加上包围语句(eg: try/catch/finally, for, do while...) Ctrl+G / Ctrl+Alt+Shift+G:查询变量或者函数或者类在哪里被使用或被
阅读全文