Foundation框架
什么是框架:它是其他所有iOS框架的基础。开发中常用的数据类
型:结构体、枚举、类。使用Foundation中的数据类型,包含它
的主文件就可以使用:#importFoundation/Foundation.h
常用结构体:
structDate{int
year;intmonth;int
day;
}struct日期d={2015,12,31};struct日期d2=
{.month=12,.year=2015,
Foundation框架
什么是框架:它是其他所有iOS框架的基础。开发中常用的数据类
型:结构体、枚举、类。使用Foundation中的数据类型,包含它
的主文件就可以使用:#importFoundation/Foundation.h
常用结构体:
structDate{int
year;intmonth;int
day;
}struct日期d={2015,12,31};struct日期d2=
{.month=12,.year=2015,
文档评论(0)