watchOS 笔记

一、watchOS

        iOS10.3发布后,appstore就开始拒绝接受还支持watchos 1的发布申请了,只接受watchos 2.0及更高版本。

1、结构

2、程序执行周期



二、iPhone 与iWatch 之间的通讯

1、App Groups (watchOS 1)

 App Groups只能异步同步数据,当手表读取数据的时候,只能读之前手机App保存的数据,相反也是如此。当手机App有新的数据保存时,不能及时的通知手表更新数据,只能是手表下次去主动获取数据。

 2、app delegate (watchOS 1)

 通过app delegate方式来同步数据

手表App的InterfaceController调用:

openParentApplication: reply:  

手机App的AppDelegate会响应, 响应函数: 

- application: handleWatchKitExtensionRequest: reply:


3、Watch Connectivity Framework (WatchOS 2)(前台方式)

iOS9 之后,watchOS 2.0以后使用的方式。

使用前提:

1. 设备间能够无线联通;

2. 应用之间能够联通,这意味着AppleWatch端的程序必须前台运行,即session的reachable值为true。

 可传输的类型:NSDictionary 与NSData 

(1)配置WCSession

(2) 发送message

(3) 接收message


4、WatchConnectivity.Framework (WatchOS 2)(后台方式)

 4.1、Application context

发送:

-(void)sendDataWithApplicationContext:(NSDictionary* )context{

       [[WCSession  defaultSession] updateApplicationContext:contexterror:nil];

}

接收:

- (void)session:(WCSession*)session didReceiveApplicationContext:(NSDictionaryid> *)applicationContext{

}

ApplicationContext传输数据常见于传输单个字典类型数据的情况,这过程不会即刻发送,但会在对应的app唤醒的时候发送。

4.2 Userinfo transfer

Userinfo方式与ApplicationContext相比能够传输更复杂的数据。

发送:


-(void)sendDataWithTransferUserInfo:(NSDictionary* )context{                       

                 [[WCSession defaultSession] transferUserInfo:context];

}


userInfoTransfer传输器封装了待传数据,并且,你可以通过代码控制来取消传输;

可以获取未传输的内容

 NSArray * InfoTransfers = [WCSessiondefaultSession].outstandingUserInfoTransfers;

WCSessionUserInfoTransfer* data = InfoTransfers.firstObject;

[data cancel];

接收

- (void)session:(WCSession*)session didReceiveUserInfo:(nonnullNSDictionaryid> *)userInfo{

}

Userinfo transfer适合内存内容的传输,并且支持访问队列里的未传输内容。

三、推送


四、数据共享

 如果您的iOS 应用和WatchKit 应用扩展都依赖于相同的数据,那么您可以使用共享程序组来存储数据。

 共享程序组是一个位于本地文件系统的区域,应用扩展和应用都能够访问。

 由于两个程序在不同的沙箱环境中运行,它们一般情况下都不与对方共享文件和进行通信。共享程序组让共享数据成为可能。你可以使用这个空间来存储共享的数据文件或者在两个程序间交换消息。

  您可以在iOS 应用和WatchKit 应用扩展中的Capabilities 选项卡中启动共享程序组。激活这项功能后,Xcode 将会为每个对象添加授权文件(需要的话),并给那个文件添加com.apple.security.application-groups 授权。要共享数据,这两个对象必须选择相同的共享程序组。

 程序运行时,您可以通过在共享容器目录中读写文件以在两个程序间共享数据。

要访问容器,请使用NSFileManager 中的containerURLForSecurityApplicationGroupIdentifier:  方法来接收该目录的根路径。使用方法返回的URL 来枚举目录内容或者在目录中为文件创建新的URL。




 NSUserDefaults*mySharedDefaults = [[NSUserDefaults alloc]  

 initWithSuiteName:@"group.sharingdata"];

  [mySharedDefaults setObject:myString forKey:@"savedUserInput"];

 [mySharedDefaults synchronize];



 NSUserDefaults*mySharedDefaults = [ [ NSUserDefaults alloc]  

 initWithSuiteName:@"group.sharingdata"];

[mySharedDefaults synchronize];

self.myLabel.text= [mySharedDefaults stringForKey:@"savedUserInput"];



五、文件传输

 API使用上和Userinfo transfer很像,支持队列,支持未完成内容的访问,需要附加元数据信息。

发送

NSURL*filePath = [[NSURL alloc] initFileURLWithPath:[[NSBundlemainBundle] 

 pathForResource:@"dogs"ofType:@"png"]];


[[WCSession defaultSession] transferFile:filePath metadata:nil];



-(void)session:(WCSession*)session didFinishFileTransfer:(WCSessionFileTransfer*)fileTransfer error:(NSError*)error {

                 NSLog(@"error: %@", error);

}

接收:

-(void)session:(WCSession*)session didReceiveFile:(WCSessionFile*)file {

 dispatch_async(dispatch_get_main_queue(), ^{

            NSData*imageData = [[NSData alloc] initWithContentsOfURL:file.fileURL];

            self.imageView.image= [[UIImage alloc] initWithData:imageData];

 });

}


六、网络请求

         watchOS 2.0 以后,可使用NSURLSession对象直接连接网络 与 iOS无异,包括上传和下载文件的能力。

        AFNetWotking也支持 watchOS 。

你可能感兴趣的:(watchOS 笔记)