{{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讲义(基础篇)(含光盘1张)

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

疯狂iOS讲义(基础篇)(含光盘1张)

{{__(":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

全书包含近百个实例,几乎每个知识点都可以找到对应的实例,最后提供“连连看”极具参考价值。

全部案例均通过真机测试,随书光盘提供全部代码。


Content Description

本书基于《疯狂iOS讲义(上)》第2版升级而来,已真正升级成Swift、Objective-C双语讲解。本书所有案例(除前面介绍Objective-C语法部分之外)全部都提供Swift、Objective-C两种语言的版本。本书以*新的iOS 9.2、Xcode 7.2为平台,全面介绍了iOS应用开发的基础知识。书中每个案例、每个截图都全面升级到iOS 9.2。本书全面、细致地介绍了Objective-C的面向对象语法、Foundation框架的核心类库用法、文件 IO体系等,详细讲解了iOS应用开发的基本理论,以及iOS应用的MVC设计和事件处理编程,重点介绍了iOS界面编程、iOS应用的生命周期、Quartz 2D绘图、坐标变换、Core Image滤镜等内容,掌握这些基础内容之后,即可开发出基础的iOS App应用和简单的iOS游戏。本书*后介绍了一个疯狂连连看的实例。本书详细介绍了iOS 9新增的UIAlertController、UIStackView控件,其中UIStackView正是为了自适应不同尺寸屏幕而设计的控件,可用于取代早期iOS开发中的约束(约束实在是太难以管理了)。本书还重点介绍了Xcode 7提供的Storyboard Reference,通过使用Storyboard Reference,可以对大型iOS App的界面设计进行分解、重构,从而保证项目具有更好的可维护性。本书从“项目驱动”的角度来讲授理论,全书一共包括近百个实例,这些示范性的实例既可帮助读者更好地理解各知识点在实际开发中的应用,也可供读者在实际开发时作为参考,拿来就用。如果读者在阅读本书时遇到了技术问题,可以登录疯狂Java联盟(http://www.crazyit.org)发帖,笔者将会及时予以解答。本书为所有打算深入掌握iOS编程的读者而编写,适合各种层次的iOS学习者和开发者阅读,也适合作为大学教育、培训机构的iOS教材。但如果只是想简单涉猎iOS应用开发,则本书过于庞大,不适合阅读。

Author Description

十多年软件开发从业经验,疯狂软件教育中心教学总监。疯狂Java实训营创始人,疯狂Java体系原创图书作者。广东技术师范学院计算机科学系兼职教授,51CTO专家门诊特邀嘉宾。培训的学生已在华为、IBM、阿里软件、网易、电信盈科等名企就职。

Catalogue

第1章iOS应用与开发环境 1
1.1 iOS简介及其开发语言 2
1.1.1 Swift简介 2
1.1.2Objective-C简介 2
1.1.3iOS简介 3
1.2搭建iOS开发环境 4
1.2.1下载并安装Xcode和SDK 4
1.3第一个Objective-C程序 7
1.3.1使用文本编辑器开发Objective-C
程序 7
1.3.2 使用Xcode工具开发Objective-C
程序 9
1.4 熟悉Xcode 11
1.4.1 创建iOS项目 11
1.4.2 熟悉导航面板 13
1.4.3 熟悉检查器面板 16
1.4.4 熟悉库面板 17
1.4.5 使用Xcode的帮助系统 19
1.5 本章小结 21
第2章数据类型和运算符 22
2.1 注释 23
2.2 标识符和变量 24
2.2.1 分隔符 24
2.2.2 标识符规则 26
2.2.3 Objective-C关键字 26
2.3 数据类型分类 26
2.4 基本数据类型 27
2.4.1 整型 27
2.4.2 NSLog输出函数及格式字符 28
2.4.3 字符型 30
2.4.4 浮点型 31
2.4.5 枚举型 32
2.4.6 BOOL类型 34
2.5 类型转换 35
2.5.1 自动类型转换 36
2.5.2 强制类型转换 37
2.5.3 表达式类型的自动提升 37
2.6 运算符 38
2.6.1 算术运算符 38
2.6.2 赋值运算符 41
2.6.3 位运算符 41
2.6.4 扩展后的赋值运算符 43
2.6.5 比较运算符 44
2.6.6 逻辑运算符 45
2.6.7 逗号运算符 45
2.6.8 三目运算符 46
2.6.9 运算符的结合性和优先级 47
2.7 本章小结 48
第3章流程控制与数组 49
3.1 顺序结构 50
3.2 分支结构 50
3.2.1 if条件语句 50
3.2.2 switch分支语句 54
3.3 循环结构 56
3.3.1 while循环语句 56
3.3.2 do while循环语句 58
3.3.3 for循环 59
3.3.4 嵌套循环 62
3.4 控制循环结构 63
3.4.1 使用break结束循环 63
3.4.2 使用continue结束本次循环 64
3.4.3 使用return结束函数 64
3.5 goto语句 65
3.6 数组 67
3.6.1 定义数组 67
3.6.2 数组的显式初始化 68
3.6.3 使用数组 69
3.6.4 多维数组 70
3.6.5 多维数组的初始化 71
3.6.6 字符数组、字符串与结束标志 77
3.6.7 输出字符串和字符串函数 78
3.6.8 数组的应用举例 80
3.7 本章小结 81
第4章C语言特性 82
4.1 函数 83
4.1.1 定义函数 83
4.1.2 函数声明 86
4.1.3 函数的参数传递机制 87
4.1.4 递归函数 91
4.1.5 数组作为函数参数 92
4.1.6 内部函数与外部函数 96
4.2 局部变量与全局变量 98
4.2.1 局部变量 98
4.2.2 全局变量 99
4.2.3 外部全局变量与内部全局变量 101
4.2.4 动态存储与静态存储 102
4.3 预处理 105
4.3.1 使用#define、#undef执行
宏定义 105
4.3.2 带参数的宏定义 107
4.3.3 使用#ifdef、#ifndef、#else、
#endif执行条件编译 108
4.3.4 使用#if、#elif、#else、#endif
执行条件编译 110
4.3.5 #include与#import 111
4.4 指针 112
4.4.1 指针的概念 112
4.4.2 指针变量及其基本用法 113
4.4.3 指针变量作为函数参数 115
4.5 指针与数组 117
4.5.1 指向数组的指针变量 117
4.5.2 指针运算 118
4.5.3 数组变量作为函数参数 120
4.5.4 指向多维数组的指针变量 122
4.6 字符串与指针 124
4.6.1 使用字符指针表示字符串 125
4.6.2 字符指针作为函数参数 125
4.7 函数与指针 127
4.7.1 用函数指针变量调用函数 127
4.7.2 用函数指针变量作为函数参数 128
4.7.3 返回指针的函数 129
4.8 指针数组和指向指针变量的指针 131
4.8.1 指针数组与main()函数形参 131
4.8.2 指向指针变量的指针 134
4.9 结构体 134
4.9.1 定义结构体 134
4.9.2 typedef语句 136
4.9.3 初始化结构体变量 138
4.9.4 结构体数组 139
4.10 块 140
4.10.1 块的基本语法 140
4.10.2 块与局部变量 141
4.10.3 直接使用块作为参数 142
4.10.4 使用typedef定义块类型 143
4.11 本章小结 144
第5章面向对象(上) 145
5.1 类和对象 146
5.1.1 定义类 146
5.1.2 对象的产生和使用 150
5.1.3 对象和指针 152
5.1.4 self关键字 154
5.1.5 id类型 157
5.2 方法详解 158
5.2.1 方法的所属性 158
5.2.2 形参个数可变的方法 159
5.3 成员变量 160
5.3.1 成员变量及其运行机制 160
5.3.2 模拟类变量 163
5.3.3 单例(Singleton)模式 164
5.4 隐藏和封装 165
5.4.1 理解封装 165
5.4.2 使用访问控制符 165
5.4.3 理解@package访问控制符 169
5.4.4 合成存取方法 170
5.4.5 使用点语法访问属性 176
5.5 键值编码(KVC)与键值监听
(KVO) 176
5.5.1 简单的KVC 177
5.5.2 处理不存在的key 179
5.5.3 处理nil值 181
5.5.4 key路径 182
5.5.5 键值监听(KVO) 184
5.6 对象初始化 187
5.6.1 为对象分配空间 187
5.6.2 初始化方法与对象初始化 187
5.6.3 便利的初始化方法 189
5.7 类的继承 191
5.7.1 继承的特点 191
5.7.2 重写父类的方法 193
5.7.3 super关键字 194
5.8 多态 197
5.8.1 多态性 197
5.8.2 指针变量的强制类型转换 200
5.8.3 判断指针变量的实际类型 201
5.9 本章小结 202
第6章面向对象(下) 203
6.1 Objective-C的包装类 204
6.1.1 它们不是包装类 204
6.1.2 NSValue和NSNumber 205
6.2 处理对象 206
6.2.1 打印对象和description方法 206
6.2.2 ==和isEqual:方法 208
6.3 类别与扩展 212
6.3.1 类别(category) 213
6.3.2 利用类别对类进行模块化设计 215
6.3.3 使用类别来调用私有方法 215
6.3.4 扩展(extension) 217
6.4 协议(protocol)与委托 219
6.4.1 规范、协议与接口 219
6.4.2 使用类别实现非正式协议 220
6.4.3 正式协议的定义 221
6.4.4 遵守(实现)协议 222
6.4.5 协议与委托(delegate) 225
6.5 使用@try处理异常 228
6.5.1 使用@try...@catch...@finally
捕获异常 229
6.5.2 访问异常信息 231
6.5.3 使用@finally回收资源 232
6.5.4 抛出异常与自定义异常类 233
6.6 Objective-C反射机制 235
6.6.1 获得Class 235
6.6.2 检查继承关系 236
6.6.3 动态调用方法 237
6.7 手动内存管理 241
6.7.1 对象的引用计数 242
6.7.2 对象所属权 245
6.7.3 方法中的保留和释放 247
6.7.4 使用自动释放池 248
6.7.5 自动释放池的销毁时机与
工作过程 250
6.7.6 临时对象与事件循环中的
自动释放池 251
6.7.7 手动内存管理的规则总结 252
6.8 自动引用计数 253
6.8.1 自动引用计数概述 253
6.8.2 @autoreleasepool块 254
6.8.3 使用弱引用解决强引用循环 255
6.9 本章小结 258
第7章Foundation框架详解 259
7.1 字符串(NSString与
NSMutableString) 260
7.1.1 创建字符串 260
7.1.2 NSString的常用功能 261
7.1.3 可变字符串
(NSMutableString) 262
7.2 日期与时间 263
7.2.1 日期与时间(NSDate) 264
7.2.2 日期格式器
(NSDateFormatter) 265
7.2.3 日历(NSCalendar)与日期

Introduction

前 言




移动互联网热潮在全世界引起了巨大反响,移动互联网正在改变着传统互联网的格局,全世界的IT公司争相将业务重心向移动互联网转型,移动互联网业务也成为业内最大的利润增长点。


Apple公司的iOS系统作为与Android并驾齐驱的操作系统,具有非常完善的生态圈,而且用户具有良好的付费习惯,吸引了大量的专业软件和小团队,甚至包括个人用户。


Apple公司提供的App Store作为应用程序市场,它为缺乏市场运作能力的第三方开发商和草根开发者赋予了新的商业机会:开发商和草根开发者只需专注于应用的开发,而市场和销售则交给Apple公司管理。在这种模式下,即使小型团队,甚至个人开发者也可以创造财富神话。


Apple公司在全世界IT行业是一个极富传奇色彩的公司,它一度成为全球市值最大的IT公司,Apple公司的产品对于年轻人始终具有神奇的魔力,尤其是iPhone和iPad两款广为人知的产品,更是让无数追求时尚的年轻人为之痴迷。目前Apple公司也在逐步推出iTV(基于iOS系统的智能电视)、iWatch(智能手表)等各种个人电子消费品,这些产品也吊足了时尚一族的胃口。Apple公司独特的设计、市场运作方式、商业模式和公司经营管理理念,也是众多IT公司竞相研究、模仿的对象。


本书基于《疯狂iOS讲义(上)》第2版升级而来,已真正升级成Swift、Objective-C双语讲解。本书所有案例(除前面介绍Objective-C语法部分之外)全部都提供Swift、Objective-C两种语言的版本。


本书基于新版的iOS 9.2,并采用新的Xcode 7.2作为开发平台。书中每个案例、每个截图都是基于iOS 9.2的。本书详细介绍了iOS 9新增的UIAlertController、UIStackView控件,其中UIStackView正是为了自适应不同尺寸屏幕而设计的控件,可用于取代早期iOS开发中的约束(约束实在是太难以管理了)。本书还重点介绍了Xcode 7提供的Storyboard Reference,通过使用Storyboard Reference,可以对大型iOS App的界面设计进行分解、重构,从而保证项目具有更好的可维护性。


本书有什么特点


本书是一本介绍iOS应用开发的实用图书,全面介绍了iOS 9.2平台上应用开发各方面的知识。与市面上有些介绍iOS编程的图书不同,本书并没有花太多篇幅介绍Apple公司、iOS的发展历史(因为这些内容到处都是),完全没有介绍Apple Store(因为它只是一个交易网站,与iOS开发无关,但有些图书甚至用整整一章来介绍它)。


本书只用了一章来介绍如何搭建iOS开发环境和Xcode工具的用法。本书内容大致可分为两个部分:


第一部分详细介绍了Objective-C编程语言,本书在介绍Objective-C基本语法、面向对象语法时没有过多地使用IDE工具,而是带领读者使用最基本的文本编辑器学习编程,务必使读者真正掌握Objective-C语法。


第二部分介绍了iOS开发的基础,详细介绍了iOS项目的结构、各文件的作用及其调用关系,并归纳了iOS应用的MVC设计,在代码中获取UI控件的三种方式(必须先获取UI控件,然后即可修改它来更新用户界面),iOS应用事件处理的三种方式,通过这种方式可以让读者快速掌握iOS编程的思路。第二部分的重点是iOS应用的UI界面开发和图形、图像处理——全书300多页、近100个实例全面、系统地介绍了iOS的各种UI控件的功能、用法及其定制方法,并通过相应的实例程序给出了示范。


需要说明的是,本书只是一本介绍iOS应用开发的图书,不是一本关于所谓“思想”的书,不要指望学习本书能提高你所谓的“iOS思想”,所以奉劝那些希望提高编程思想的读者不要阅读本书。


本书更不是一本看完之后可以“吹嘘、炫耀”的书——因为本书并没有堆砌一堆“深奥”的新名词、一堆“高深”的思想,本书保持了“疯狂体系”的一贯风格:操作步骤详细,编程思路清晰,语言平实。只要读者想学习iOS开发,无须担心没有Apple电脑(网络上使用普通电脑装黑苹果的文章铺天盖地),无须担心没有iPhone(Xcode集成的模拟器在大部分场景下完全可以胜任开发)——即使读者以前没有编程基础,但只要有决心和毅力,阅读本书也不会有任何问题(本书从最基本的Objective-C语法开始讲起);只要你有决心和毅力,就可以掌握iOS应用开发。


认真看完本书,把书中所有示例都练习一遍,本书带给你的只是9个字:“看得懂、学得会、做得出”。本书不能让你认识一堆新名词,只会让你学会实际的iOS应用开发。本书最后综合运用前面介绍的UI编程、绘图等知识编写了一个疯狂连连看的小游戏,因此认真阅读本书,掌握书中知识即可开发出各种棋类、牌类、益智类的小游戏。


不管怎样,只要读者在阅读本书时遇到知识上的问题,都可以登录疯狂Java联盟(https://www.crazyit.org)与广大学习者交流,笔者也会通过该平台与大家一起交流、学习。


本书还具有如下几个特点:


1.知识全面,覆盖面广


本书深入阐述了Objective-C的基本语法,包括类、对象、方法、成员变量、KVC、KVO、继承和多态等面向对象的基础知识,也包括类别(category)、扩展(extension)、协议与委托、内存管理与ARC等Objective-C的高级知识。本书详细介绍了iOS全部图形界面控件的功能和用法,事件处理机制,iOS图形、图像处理,内容全面而深入,覆盖面非常广。


2.内容实际,实用性强


本书并不局限于枯燥的理论介绍,而是采用了“项目驱动”的方式来讲授知识点,全书包含近百个实例,几乎每个知识点都可以找到对应的参考实例。本书最后还提供了“疯狂连连看”应用,具有极高的参考价值。


3.讲解详细,上手容易


本书保持了“疯狂体系”的一贯风格:操作步骤详细,编程思路清晰,语言平实。只要读者有学习的决心和毅力,掌握本书内容就能打下扎实的iOS开发基础。


本书写给谁看


本书为所有打算深入掌握iOS编程的读者而编写,适合各种层次的iOS学习者和开发者阅读,也适合作为大学教育、培训机构的iOS教材。但如果只是想简单涉猎iOS应用开发,则本书过于庞大,不适合阅读。



2016-03-01



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