- 博客(12)
- 收藏
- 关注
原创 OC项目嵌入Swift,OC混合开发Swift初始配置
1. 打开你现在的OC 项目,新建文件-> 选择swift文件,名字自己定义喽。创建的时候,Xcode 会自动询问你,是否要创建桥接文件,点击创建,就会出来一个.h 文件,名字是这个格式的 :项目名称-Briding-Header.h 2. 这个时候出现了2个文件。 一个你创建的CYTSwiftTest.swift ,另一个是 项目名称-Briding-Header.h 这样...
2018-04-24 14:30:52 552
原创 iOS获取苹果touch-ID,faceID密码弹窗
// 创建指纹验证对象 LAContext *context = [[LAContext alloc] init]; // 创建error NSError *error = nil; // 验证设备是否支持touchID if ([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiomet...
2018-04-20 11:56:53 1256
原创 iOS推送消息push,语音播报
iOS 10 开始支持1. xcode - >file -> new -> target 选择iOS下面的,Notification Service Extension Service Extension 中收到推送之后,用AVSpeechSynthesisVoice相关类,直接把推送过来需要播报相关的文字转化成语音播报ServiceExtension中收到推送之后,将要播报的...
2018-03-13 11:24:18 894
原创 MVC,MVP,MVVM
一、MVC ● 视图(View):用户界面。 ● 控制器(Controller):业务逻辑 ● 模型(Model):数据保存 1. View 传送指令到 Controller 2. Controller 完成业务逻辑后,要求 Model 改变状态 3. Model 将新的数据发送到 View,用户得到反馈 所有通信都是单向的。二、互动模式
2017-08-14 17:54:56 230
原创 CGD,信号量
GCD中的信号量是指 Dispatch Semaphore Dispatch Semaphore中,通过“计数”来标识通过和等待。 GCD的Dispatch Semaphore提供了三个函数操作Semaphore:dispatch_semaphore_create //创建一个semaphore 通过dispatch_semaphore_create 函数创建一个Semaph
2017-08-14 17:50:55 337
原创 iOS-利用UIScrollView实现展示图片的无限滚动及自动滚动
1 // 2 7 // 8 9 #import "GXViewController.h" 10 11 #define kCount 6 //图片总张数 12 13 static long step = 0; //记录时钟动画调用次数 14 15 @interface GXViewController () 16 { 17 UIScrollView
2015-11-09 20:49:45 457
原创 iOS 关于萌(蒙)层的添加,
自己封装的方法:+(void)showScoreInWindow:(NSString *)score showTimeValue:(CGFloat)time{ UIWindow *window = [UIApplication sharedApplication].delegate.window; UIView *maskView = [[U
2015-11-09 19:44:44 884
原创 iOS 关于数组的详细使用【基础知识】
1. 根据arrayWithObjects生成一个数组NSArray *arr1=[NSArrayarrayWithObjects:@"nice",@"to”@"see",@"you",@"again",@"cythlyn",nil];NSLog(@"%@",[arr1 objectAtIndex:1]);//获取下标为1 对应的字符串1. 获取数组中的最后一个元素NSLog(
2015-11-09 19:40:23 703
原创 iOS 上传云端代码
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ NSURL *localURL = ...; // url of document to transfer to iCloud NSString *name = [localURL lastPathCom
2015-11-09 19:37:50 552
原创 iOS 如何获取系统的个人热点,进行配置UI
监听 个人热点 进行 调整UI //监听: [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(someMethod:) name:UIApplicationDidBecomeActiveNotification object:nil];
2015-11-09 19:34:14 567
原创 根据当地时间,去随机一个时间点前后各10分钟
NSDate *now = [NSDate date]; NSCalendar *cl = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar]; NSUInteger flag = NSYearCalendarUnit | NSMonthCalendarUnit | N
2015-11-09 17:09:12 395
原创 怎样在键盘上添加工具栏
1. 初始化一个ToolBar UIToolbar * topView = [[UIToolbar alloc]initWithFrame:CGRectMake(0, 0, screenWith, 30)]; [topView setBackgroundImage:[UIImage imageNamed:@"plan_show_big_btm.png
2015-11-09 17:05:07 497
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人