博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Objective-C编程基础
阅读量:6147 次
发布时间:2019-06-21

本文共 679 字,大约阅读时间需要 2 分钟。

1. 声明变量

  <Type> <Variable Name>;

 

2. 基本数据类型

  数字类型: int/float/double

 

3. 对象类型

  Objective-C中的对象类型必须使用指针

    eg:  NSString *userName; 

 

4. 对象的分配/初始化/释放

  在对象使用前,必须分配内存和进行初始化

   eg: [[<class name> alloc] init];

UILabel *myLabel;
myLabel=[[UILabel alloc] init];

 

5. 快速初始化

  一些内建的快速方法可以方便我们进行初始化

NSURL *iPhoneURL;
iPhoneURL=[[NSURL alloc] initWithString:@”http:
//
www.teachyourselfiphone.com/”];

 

6. 内存的分配与释放

//
分配内存
SomeClass *aVariable = [[SomeClass alloc] init];
//
释放内存
[aVariable release];

 

7. 常量

const NSString *foo = 
@"
MY_CONSTANT
";

 

8. 类型定义和结构体

typedef 
struct
{
    
float x;
    
float y;
} Point;
int main(
int argc, 
const 
char *argv[])
{
    Point p;
    
    p.x = 
20.0;
    p.y = 
80.0;
    
    moveCursorToPoint(p);
    
    
return 
0;
}

 

 

转载地址:http://pomya.baihongyu.com/

你可能感兴趣的文章
腾讯云加入LoRa联盟成为发起成员,加速推动物联网到智联网的进化
查看>>
从Python2到Python3:超百万行代码迁移实践
查看>>
Windows Server已可安装Docker,Azure开始支持Mesosphere
查看>>
简洁优雅地实现夜间模式
查看>>
react学习总结
查看>>
微软正式发布PowerShell Core 6.0
查看>>
Amazon发布新的会话管理器
查看>>
InfoQ趋势报告:DevOps 和云计算
查看>>
舍弃Python,为什么知乎选用Go重构推荐系统?
查看>>
在soapui上踩过的坑
查看>>
MySQL的字符集和字符编码笔记
查看>>
ntpd同步时间
查看>>
must implement java.io.Serializable hessian
查看>>
Microsoft Licenses Flash Lite for Windows Mobile Users
查看>>
HDOJ 2020 绝对值排序
查看>>
HDOJ/HDU 2560 Buildings(嗯~水题)
查看>>
Maven编译时跳过Test
查看>>
Spring Boot 整合Spring Security 和Swagger2 遇到的问题小结
查看>>
[20170628]12C ORA-54032.txt
查看>>
除以2
查看>>