{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

iOS实战:传感器卷(Swift版)/清华开发者书库

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

iOS实战:传感器卷(Swift版)/清华开发者书库

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

本书是基于Swift语言编写,是iOS传感器开发的专著,极为适合作为iOS入门参考图书。同系列作品推荐阅读:

iOS实战:入门与提高卷(Swift版)

iOS实战:图形图像、动画和多媒体卷(Swift版)

iOS实战:传感器卷(Swift版)

iOS实战:苹果“生态圈”编程卷(Swift版)


Content Description

《iOS实战:传感器卷(Swift版)/清华开发者书库》系统论述了iOS传感器应用开发的相关知识,全部采用全新的基于iOS 8的API。全书分为9章:第1章介绍开发准备工作、本书结构及书中的一些约定;第2章介绍手势识别,通过两种方式实现ios常用手势,包括Tap(单击)、Long Press(长按)、Pan(拖动)、Swipe(滑动)、Rotation(旋转)和Pinch(手指的合拢和张开);第3章介绍加速度计与陀螺仪,通过这两种可以感知设备运动状态的传感器,可以开发出很多有趣的应用和游戏;第4章介绍指南针与磁力计,磁力计可以感知周围的磁场,可以开发指南针、罗盘等导航应用,还可以开发特斯拉计(或高斯计)等感知磁场强度的应用;第5章介绍照相机与摄像头,包括图片抓取、视频捕获等技术;第6章介绍音频设备访问,重点介绍了使用AVFoundation框架实现音频播放和音频录制;第7章介绍使用蓝牙,重点介绍了低功耗蓝牙、Game Kit和蓝牙通信;第8章介绍定位技术,包括定位服务编程、地理信息编码、地理信息反编码、微定位技术iBeacon和接近传感器;第9章是项目实战,通过增强现实版本铅锤应用介绍iOS敏捷开发过程,本项目中综合用到了视频捕获实现的增强现实技术、加速度计等传感器。

Author Description

关东升 国内知名iOS技术作家,iOS技术顾问,高级培训讲师,移动开发专家。担任51CTO社区iOS技术顾问,精通iOS、Android和Windows Phone及HTML5等移动开发技术。曾先后主持开发大型网络游戏《神农诀》的iOS和Android客户端开发,国家农产品追溯系统的iPad客户端开发,酒店预订系统的iOS客户端开发,金融系统的iOS、Windows Phone 及Android客户端开发。在App Store上发布数款游戏和应用软件,擅长移动平台的应用和游戏类项目开发。长期为中国移动研究院、云南移动、东软、方正科技、大唐电信、中石油、深圳康拓普、上海财富168、天津港务局等企事业单位授课。著有《iOS开发指南——从零基础到App Store上架》、《交互设计的艺术——iOS 7拟物化到扁平化革命》、《Cocos2d-x实战:C++卷》、《Cocos2d-x实战:Lua卷》、《Cocos2d-x实战:工具卷》、《Cocos2d-x实战:JS卷——Cocos2d-JS开发》等专业图书。


Catalogue

第1章 准备开始………1
1.1 本书结构……1
1.2 本书中的约定1
1.2.1 实例代码约定………….2
1.2.2 图示约定………3
1.2.3 方法命名约定………….5
1.2.4 构造器命名约定……….6
第2章 手势识别………8
2.1手势种类……8
2.2使用手势识别器……… 10
2.2.1 视图对象与手势识别… 10
2.2.2 手势识别状态………… 10
2.2.3 检测Tap(单击)……… 12
2.2.4 检测Long Press(长按)………. 00
2.2.5 检测Pan(平移)……… 26
2.2.6 检测Swipe(滑动)…… 29
2.2.7 检测Rotation(旋转)… ……32
2.2.8 检测Pinch(手指的合拢和张开)……… 36
2.2.9 检测Screen Edge Pan(屏幕边缘平移)…………. 39
2.3 触摸事件与手势识别… 40
2.3.1 事件处理机制 40
2.3.2 响应者对象与响应链… 41
2.3.3 触摸事件…… 42
2.3.4 手势识别…… 48
本章小结… 51
第3章 加速度计与陀螺仪……52
3.1 加速度计……… 53
3.1.1 访问加速度计 53
3.1.2 实例:通过CMMotionManager访问加速度计……… 54
3.1.3 数据的“滤波”………… 56
3.1.4 实例:数据的“滤波”… 58
3.1.5 感知设备方向 ………62
3.1.6 实例:感知设备方向… 62
3.2 陀螺仪………… 66
3.2.1 访问陀螺仪… 67
3.2.2 检测晃动设备 69
3.2.3 实例:检测晃动设备… 70
本章小结… 71
第4章 指南针与磁力计……… 72
4.1 访问磁力计…… 72
4.1.1 访问导航方面的API 73
4.1.2 磁力计与设备方向…… 73
4.1.3 实例:指南针应用…… 75
4.2 检测磁场……… 78
4.2.1 检测磁场API 79
4.2.2 实例:特斯拉计应用… 79
本章小结… 82
第5章 照相机与摄像头……… 83
5.1iOS设备摄像头……… 84
5.2 图像抓取……… 84
5.2.1 图像选择器… 84
5.2.2 实例:照相机抓取图片………. 85
5.2.3 编辑图片…… 89
5.2.4保存图片…… 90
5.2.5 添加照相机图层……… 92
5.3视频捕获……… 94
5.3.1 实例:视频捕获……… 94
5.3.2 使用UIImagePickerController捕获…… 95
5.3.3 使用AV Foundation捕获……. 98
本章小结…… 100
第6章 音频设备访问… 101
6.1 音频API简介………… 101
6.2 AVFoundation框架实现音频录制与播放 ……. 102
6.2.1 音频播放……… 102
6.2.2 实例:音频播放………. 103
6.2.3 音频录制……… 106
6.2.4 实例:音频录制………. 107
本章小结…… III
第7章 使用蓝牙……… 112
7.1 低功耗蓝牙… 112
7.1.1Core Bluetooth API 112
7.1.2 中心角色……… 113
7.1.3 外设角色……… 116
7.2实例:低功耗蓝牙通信………. 119
7.2.1 中心角色编程实现……. 121
7.2.2 外设角色编程实现……. 127
7.3 使用SensorTag开发低功耗蓝牙应用… 132
7.3.1 SensorTag开发套件…. 132
7.3.2 实例:我的温度计……. 133
本章小结…… 143
第8章 定位…… 144
8.1 获得用户的位置……… 144
8.1.1 定位服务编程…………. 145
8.1.2 实例:定位服务………. 146
8.1.3 距离过滤器和精度…~. 147
8.1.4 启动和停止定位服务…. 148
8.1.5 获得位置信息…………. 149
8.1.6 关于定位服务的测试…. 150
8.2 地理信息反编码与编码查询…. 155
8.2.1地理信息反编码………. 155
8.2.2 实例:地理信息反编码………… 155
8.2.3地理信息编码查询……. 157
8.2.4 实例:地理信息编码查询……… 158
8.3 微定位技术… 160
8.3.1 地理围栏……… 160
8.3.2 iBeacon技术… 160
8.3.3 实例:iBeacon技术实现微定位………. 161
8.3.4 接近传感器…… 169
本章小结…… 171
第9章iOS敏捷开发项目实战——增强现实版本铅锤应用 …… 172
9.1 应用分析与设计……… 172
9.1.1 应用简介……… 172
9.1.2 需求分析……… 172
9.1.3 原型设计……… 174
9.2 iOS敏捷开发 174
9.2.1 敏捷开发宣言…………. 175
9.2.2 iOS是否可以敏捷开发………… 175
9.2.3 iOS敏捷开发般过程………… 176
9.3 任务1:创建应用并初始化工程 ……… 177
9.3.1 任务1.1:创建PlumbBob 工程………. 177
9.3.2 任务1.2:创建主视图控制器… 178
9.3.3 任务1.3:创建子视图控制器… 181
9.3.4 任务1.4:视图之间的导航…… 183
9.3.5 任务1.5:设置设备支持方向… 187
9.3.6 任务1.6:添加铅锤图片…… 187
9.4 任务2:铅锤功能 …… 189
9.4.1 任务2.1:添加铅锤ImageView到主视图…… 189
9.4.2 任务2.2:通过加速度计传感器控制铅锤…… 191
9.5 任务3:增强现实功能………. 193
9.6 任务4:关于我们 …… 194
本章小结…… 196

Introduction

iOS实战:传感器卷(Swift版)/清华开发者书库

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book