From 677d772dbe82c6ea8caddadd3ea3bf774726fa1f Mon Sep 17 00:00:00 2001 From: TakayukiHoshi1984 Date: Fri, 22 Dec 2017 12:18:11 +0900 Subject: [PATCH] =?UTF-8?q?CameraProfile=E3=81=AE=E4=BB=95=E6=A7=98?= =?UTF-8?q?=E5=A4=89=E6=9B=B4=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 更新内容 * in-start/in-stopを受け付けていなかったので受け付けるようにした。 --- .../dConnectDeviceSonyCamera/Classes/SonyCameraManager.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dConnectDevicePlugin/dConnectDeviceSonyCamera/dConnectDeviceSonyCamera/Classes/SonyCameraManager.m b/dConnectDevicePlugin/dConnectDeviceSonyCamera/dConnectDeviceSonyCamera/Classes/SonyCameraManager.m index b418cac2..4d7dc963 100644 --- a/dConnectDevicePlugin/dConnectDeviceSonyCamera/dConnectDeviceSonyCamera/Classes/SonyCameraManager.m +++ b/dConnectDevicePlugin/dConnectDeviceSonyCamera/dConnectDeviceSonyCamera/Classes/SonyCameraManager.m @@ -384,7 +384,7 @@ - (void) setZoomByDirection:(NSString *)direction __block typeof(self) weakSelf = self; dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ - NSString *tmpMovement = movement; + NSString *tmpMovement = [movement stringByReplacingOccurrencesOfString:@"in-" withString:@""]; if ([movement isEqualToString:@"max"]) { tmpMovement = @"start"; }