2017年11月27日 11:01:16 Amazing_anna 阅读数:886 代码示例 NSRect frame = CGRectMake(0, 0, 200, 200); NSUInteger style = NSTitledWindowMask | NSClosableWindowMask ...
分类:
其他好文 时间:
2019-01-22 17:26:10
阅读次数:
202
Foundation 框架定义经常使用结构体。结构体採用object-c 定义:经常使用NSSRange,NSPoint。NSSize,NSRect等 一、NSRange 创建范围结构体。 方法:NSMakeRange(參1,參2)。location和length。 二、集合数据类型。 1,NSPo ...
分类:
其他好文 时间:
2017-07-31 19:53:56
阅读次数:
134
一、基本知识 Foundation—基础框架。框架中包含了很多开发中常用的数据类型,如结构体,枚举,类等,是其他ios框架的基础。 如果要想使用foundation框架中的数据类型,那么包含它的主头文件就可以了。 即#import<foundation/foundation.h> 补充:core f ...
分类:
移动开发 时间:
2017-03-30 18:43:36
阅读次数:
168
UIScrollView表示可滚动的视图,它最主要的使用场景是让用户可以通过拖拽显示布置一屏的数据。 常用的属性或者方法有: frame:NSRect显示范围,小于屏幕尺寸的矩形区域; contentSize:内容大小,一般情况下contentSize的大小大于frame的大小(这也是可滚动的前提条 ...
分类:
其他好文 时间:
2016-09-16 18:26:48
阅读次数:
120
- (void)drawRect:(NSRect)dirtyRect { [super drawRect:dirtyRect]; NSGradient *backgroundGradient = [[NSGradient alloc] initWithStartingColor:[NSColor c ...
分类:
其他好文 时间:
2016-08-29 10:20:36
阅读次数:
156
- (void)drawRect:(NSRect)dirtyRect { [super drawRect:dirtyRect]; [[NSColor clearColor] setFill]; NSRectFill(self.bounds); self.wantsLayer = YES;...
分类:
系统相关 时间:
2016-01-25 12:48:50
阅读次数:
1189
1、NSRange:1 typedef struct _NSRange {2 3 NSUInteger location;4 5 NSUInteger length;6 7 } NSRange; NSRange本身是系统自定义的一个结构体的变量名;这个结构体用来表示...
分类:
其他好文 时间:
2016-01-11 18:04:02
阅读次数:
213
//
// main.m
// 常用结构体
//
#import
/*
常用结构体
1> 创建一个NSRange结构体,表示范围
2> NSSize等同于CGSize 有两个值组成 weight 表示宽度 height 表示高度
3> NSPoint等同于CGPoint 表示一个点的坐标位置
4> NSRect 等同于CGRect 表示一个矩形
*/
int main(int ...
分类:
其他好文 时间:
2015-07-25 09:33:21
阅读次数:
127
// NSPoint\CGPoint(常用) NSSize\CGSize(常用) NSRect\CGRect(常用) NSRangeNSPoint p1 = NSMakePoint(10, 10);CGPoint p2 = CGPointMake(10, 20); // 常用NSSize s1 =....
分类:
其他好文 时间:
2015-07-13 17:46:26
阅读次数:
126
系统定义的常用结构体NSRangeNSPoint (CGPoint)NSSize (CGSize)NSRect (CGRect)常用的结构体方法初始化NSMakeRangeCGPointMakeCGSizeMakeCGRectMake打印结构体,返回字符串- (NSString *) NSStrin...
分类:
其他好文 时间:
2015-06-17 11:16:08
阅读次数:
118