- GitHub 地址:DZNEmptyDataSet
- star:9000+
⭐️⭐️⭐️ 以下内容来源于官方源码、 README 文档、测试 Demo 以及个人使用总结 !
typedef NS_ENUM(NSInteger, UIDeviceOrientation) {
UIDeviceOrientationUnknown,
UIDeviceOrientationPortrait, // Device oriented vertically, home button on the bottom
UIDeviceOrientationPortraitUpsideDown, // Device oriented vertically, home button on the top
UIDeviceOrientationLandscapeLeft, // Device oriented horizontally, home button on the right
UIDeviceOrientationLandscapeRight, // Device oriented horizontally, home button on the left
UIDeviceOrientationFaceUp, // Device oriented flat, face up
UIDeviceOrientationFaceDown // Device oriented flat, face down
}
NSString 类及其可变子类 NSMutableString 提供了一组用于处理字符串的 API,包括用于比较,搜索和修改字符串的方法。 NSString 对象在整个 Foundation 和其他 Cocoa 框架中使用,作为平台上所有文本和语言功能的基础。
调用函数时传入某个地址(也称为引用),然后由函数将数据存入该地址指向的内存。
例:
#include <stdio.h>
#include <math.h>
int main(int argc, const char * argv[]) {
double pi = 3.14;
double integerPart;
double fractionPart;
// 将integerPart的地址作为实参传入
fractionPart = modf(pi, &integerPart);
// 获取integerPart地址上的值
printf("integerPart = %.0f,factionPart = %.2f\n",integerPart,fractionPart);
return 0;
}
输出结果
integerPart = 3,factionPart = 0.14
int i = 17;
printf("i stores its value at %p\n",&i);
输出结果:
i stores its value at 0x7fff5fbff79c