第01天C语言(00)笔记总结

1、应用 右键+option键 显示强制退出
2、control+空白键 搜索应用
3、显示隐藏文件夹
 10.9之前
 显示:defaults write com.apple.finder AppleShowAllFiles -bool true
 隐藏:defaults write com.apple.finder AppleShowAllFiles -bool false 
 10.9之后
 defaults write com.apple.finder AppleShowAllFiles Yes && killall Finder //显示隐藏文件
 defaults write com.apple.finder AppleShowAllFiles No && killall Finder //不显示隐藏文件
4、第三方软件
 https://www.macx.cn
5、快捷键
 ⌘——Command () win键
 ⌃ ——Control ctrl键
 ⌥——Option (alt)
 ⇧——Shift
 ⇪——Caps Lock
 fn——功能键就是fn
 .m.h切换 ⌘+⌃ +↓or↑
 前进后退文本文件⌘+⌃ +←or→
 关闭当前文本文件⌘+⌃+w
 自动排版代码 ⌃+i
 左右缩进 ⌘+[or]
 注释 ⌘+/
 查看名称定义,进入头文件 ⌘+鼠标左键
 查看名称api文档 ⌥+鼠标左键
  
 快捷键功能
 Command A 全选
 Command C 拷贝
 Command V 粘贴
 Command X 文字剪切(不支持文件剪切)
 Command ,偏好设置
 Command W 关闭当前窗口
 Command Q 关闭当前程序
 Command Shift Q 退出所有程序并注销
 Command Option esc 强制退出应用程序,类似于win下的任务管理器
 Command N 新建当前程序的文件
 Command S 保存
 Command Shift S 另存为….(部分程序适用)
 Command H 隐藏当前程序(Boss Key)
 Command Option H 隐藏所有后台程序
 Control Shift 光盘推出键黑屏(没有Boss Key好用,一动就亮)
 Command P 打印
 Command Shift P 页面设置
 Command tab 切换到下一个应用程序
 Command Shift tab 切换到上一个应用程序
 Command ~ 在同一程序的不同窗口下切换,safari上网经常用
 Command M 最小化当前窗口
 Command Option F 有搜索栏的程序跳到搜索栏,如Preview(预览)的搜索栏,Safari的Google栏
6、Xcode下载 https://developer.apple.com/xcode/
7、Xcode视图快捷键 (基本上隐藏都是 command + 0)
 command + 1-6 切换代码文件 command+0 隐藏
 command+. 停止运行项目 command+R 运行程序
 control + 1-6 切换文件层次
 command + Option + 1-6 切换属性区 command + Option + 0 隐藏属性区
 command + Option + control + 1-4 切换代码块区域
 command + Option + control + 0 隐藏代码块区域
 右上边的左1 command + End
 右上边的左2 command +option + End
 右上边的左2 command +option + shift + End
 command + shift + y 隐藏debug区
 规律
 ⌘左边使用 command  
 ⌘+ ⌥ 右边使用 command + option
 ⌘+ ⌥ + ⌃ 右下边使用 command + option + control
8、Xcode创建项目
 项目的名称
 团队
 组织机构名称/公司名称
 组织机构逆向域名 www.baidu,com   --- com.baidu
 应用程序的唯一标识
 编程语言
第01天C语言(00)笔记总结_第1张图片
1.png
9、创建多个项目
第01天C语言(00)笔记总结_第2张图片
2.png
99、小功能
拨打电话
NSURL *url = [NSURL URLWithString:@"tel://10010"];
[[UIApplication sharedApplication] openURL:url];
发短信NSURL *url = [NSURL URLWithString:@"sms://10010"];
[[UIApplication sharedApplication] openURL:url];
100.
    // 创建一个多度动画
    CATransition *anima = [CATransition animation];
    // 设置动画类型
    anima.type = @"cube";
    // 设置动画时间
    anima.duration = 5;
    // 添加动画
    [self.view.layer addAnimation:anima forKey:nil];
101.全景动画
    // 1.将所有的图片保存起来
    NSMutableArray *arrM = [NSMutableArray array];
   
    for(int i = 1;i < 36;i++)
    {
   // 拼接所有图片名称
   NSString *name = [NSString stringWithFormat:@"img_360car_black_%02d",i];
   [arrM addObject:[UIImage imageNamed:name]];
   
    }
   
    // 2.将图片设置给图片容器
    self.img.animationImages = arrM;
    self.img.animationDuration = 5;
    self.img.animationRepeatCount = 1;
   
    // 3.执行动画
    [self.img startAnimating];

你可能感兴趣的:(第01天C语言(00)笔记总结)