asin 0.8.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +1 -2
- data/{CHANGELOG.rdoc → CHANGELOG.md} +12 -12
- data/Gemfile.lock +6 -0
- data/README.md +153 -0
- data/lib/asin/client.rb +6 -5
- data/lib/asin/configuration.rb +9 -20
- data/lib/asin/version.rb +1 -1
- data/spec/browse_node_spec.rb +2 -1
- data/spec/cart_spec.rb +2 -1
- data/spec/cassettes/asin/asin_cart_with_an_existing_cart_should_add_items_to_a_cart.yml +62 -46
- data/spec/cassettes/asin/asin_cart_with_an_existing_cart_should_clear_a_cart.yml +60 -45
- data/spec/cassettes/asin/asin_cart_with_an_existing_cart_should_get_a_cart.yml +61 -46
- data/spec/cassettes/asin/asin_cart_with_an_existing_cart_should_update_a_cart.yml +64 -49
- data/spec/cassettes/asin/browse_node_should_lookup_a_browse_node.yml +28 -22
- data/spec/cassettes/asin/cart_should_create_a_cart.yml +30 -23
- data/spec/cassettes/asin/lookup_and_search_should_have_metadata.yml +70 -61
- data/spec/cassettes/asin/lookup_and_search_should_lookup_a_book.yml +70 -61
- data/spec/cassettes/asin/lookup_and_search_should_lookup_multiple_books.yml +120 -111
- data/spec/cassettes/asin/lookup_and_search_should_lookup_multiple_response_groups.yml +37 -32
- data/spec/cassettes/asin/lookup_and_search_should_return_a_custom_item_class.yml +70 -61
- data/spec/cassettes/asin/lookup_and_search_should_return_a_mash_value.yml +70 -61
- data/spec/cassettes/asin/lookup_and_search_should_return_a_rash_value.yml +70 -61
- data/spec/cassettes/asin/lookup_and_search_should_return_a_raw_value.yml +70 -61
- data/spec/cassettes/asin/lookup_and_search_should_search_keywords_a_book_with_fulltext.yml +573 -524
- data/spec/cassettes/asin/lookup_and_search_should_search_keywords_and_handle_a_single_result.yml +45 -37
- data/spec/cassettes/asin/lookup_and_search_should_search_keywords_never_mind_music.yml +109 -104
- data/spec/cassettes/asin/lookup_and_search_should_search_music.yml +28 -26
- data/spec/cassettes/asin/lookup_and_search_should_search_never_mind_music.yml +112 -110
- data/spec/cassettes/asin/similarity_should_find_similar_items.yml +500 -488
- data/spec/cassettes/asin/similarity_should_find_similar_items_for_multiple_asins_and_different_config.yml +53 -26
- data/spec/config_spec.rb +1 -1
- data/spec/search_spec.rb +7 -9
- data/spec/similarity_spec.rb +5 -4
- data/spec/spec_helper.rb +3 -1
- metadata +89 -31
- data/README.rdoc +0 -169
- data/spec/cassettes/asin/similarity_should_lookup_for_similar_items.yml +0 -618
data/README.rdoc
DELETED
@@ -1,169 +0,0 @@
|
|
1
|
-
== Infos
|
2
|
-
|
3
|
-
Status: http://stillmaintained.com/phoet/asin.png
|
4
|
-
Build: http://travis-ci.org/phoet/asin.png
|
5
|
-
|
6
|
-
ASIN is a simple, extensible wrapper for parts of the REST-API of Amazon Product Advertising API (aka Associates Web Service aka Amazon E-Commerce Service).
|
7
|
-
|
8
|
-
For more information on the REST calls, have a look at the whole Amazon E-Commerce-API[http://docs.amazonwebservices.com/AWSECommerceService/latest/DG/index.html].
|
9
|
-
|
10
|
-
Have a look at the RDOC[http://rdoc.info/projects/phoet/asin] for this project, if you like browsing some docs.
|
11
|
-
|
12
|
-
The gem runs smoothly with Rails 3 and is tested against multiple rubies. See +.travis.yml+ for details.
|
13
|
-
|
14
|
-
== Installation
|
15
|
-
|
16
|
-
gem install asin
|
17
|
-
gem install httpclient # optional, see HTTPI
|
18
|
-
gem install rash # optional, see Response Configuration
|
19
|
-
|
20
|
-
or in your Gemfile:
|
21
|
-
|
22
|
-
gem 'asin'
|
23
|
-
gem 'httpclient' # optional, see HTTPI
|
24
|
-
gem 'rash' # optional, see Response Configuration
|
25
|
-
|
26
|
-
== Configuration
|
27
|
-
|
28
|
-
Rails style initializer (config/initializers/asin.rb):
|
29
|
-
|
30
|
-
ASIN::Configuration.configure do |config|
|
31
|
-
config.secret = 'your-secret'
|
32
|
-
config.key = 'your-key'
|
33
|
-
end
|
34
|
-
|
35
|
-
YAML style configuration:
|
36
|
-
|
37
|
-
ASIN::Configuration.configure :yaml => 'config/asin.yml'
|
38
|
-
|
39
|
-
Inline style configuration:
|
40
|
-
|
41
|
-
ASIN::Configuration.configure :secret => 'your-secret', :key => 'your-key'
|
42
|
-
# or
|
43
|
-
client.configure :secret => 'your-secret', :key => 'your-key'
|
44
|
-
|
45
|
-
Have a look at ASIN::Configuration class for all the details.
|
46
|
-
|
47
|
-
===API Changes
|
48
|
-
|
49
|
-
With the latest version of the Product Advertising API you need to include your associate_tag[https://affiliate-program.amazon.com/gp/advertising/api/detail/api-changes.html].
|
50
|
-
|
51
|
-
ASIN::Configuration.configure do |config|
|
52
|
-
config.secret = 'your-secret'
|
53
|
-
config.key = 'your-key'
|
54
|
-
config.associate_tag = 'your-tag'
|
55
|
-
end
|
56
|
-
|
57
|
-
== Usage
|
58
|
-
|
59
|
-
ASIN is designed as a module, so you can include it into any object you like:
|
60
|
-
|
61
|
-
# require and include
|
62
|
-
require 'asin'
|
63
|
-
include ASIN::Client
|
64
|
-
|
65
|
-
# lookup an ASIN
|
66
|
-
lookup '1430218150'
|
67
|
-
|
68
|
-
But you can also use the +instance+ method to get a proxy-object:
|
69
|
-
|
70
|
-
# just require
|
71
|
-
require 'asin'
|
72
|
-
|
73
|
-
# create an ASIN client
|
74
|
-
client = ASIN::Client.instance
|
75
|
-
|
76
|
-
# lookup an item with the amazon standard identification number (asin)
|
77
|
-
items = client.lookup '1430218150'
|
78
|
-
|
79
|
-
# have a look at the title of the item
|
80
|
-
items.first.title
|
81
|
-
=> Learn Objective-C on the Mac (Learn Series)
|
82
|
-
|
83
|
-
# search for any kind of stuff on amazon with keywords
|
84
|
-
items = search_keywords 'Learn', 'Objective-C'
|
85
|
-
items.first.title
|
86
|
-
=> "Learn Objective-C on the Mac (Learn Series)"
|
87
|
-
|
88
|
-
# search for any kind of stuff on amazon with custom parameters
|
89
|
-
search :Keywords => 'Learn Objective-C', :SearchIndex => :Books
|
90
|
-
items.first.title
|
91
|
-
=> "Learn Objective-C on the Mac (Learn Series)"
|
92
|
-
|
93
|
-
# access the internal data representation (Hashie::Mash)
|
94
|
-
item.raw.ItemAttributes.ListPrice.FormattedPrice
|
95
|
-
=> $39.99
|
96
|
-
|
97
|
-
# search for similar items like the one you already have
|
98
|
-
items = client.similar '1430218150'
|
99
|
-
|
100
|
-
There is an additional set of methods to support AWS cart operations:
|
101
|
-
|
102
|
-
client = ASIN::Client.instance
|
103
|
-
|
104
|
-
# create a cart with an item
|
105
|
-
cart = client.create_cart({:asin => '1430218150', :quantity => 1})
|
106
|
-
cart.items
|
107
|
-
=> [<#Hashie::Mash ASIN="1430218150" CartItemId="U3G241HVLLB8N6" ... >]
|
108
|
-
|
109
|
-
# get an already existing cart from a CartId and HMAC
|
110
|
-
cart = client.get_cart('176-9182855-2326919', 'KgeVCA0YJTbuN/7Ibakrk/KnHWA=')
|
111
|
-
cart.empty?
|
112
|
-
=> false
|
113
|
-
|
114
|
-
# clear everything from the cart
|
115
|
-
cart = client.clear_cart(cart)
|
116
|
-
cart.empty?
|
117
|
-
=> true
|
118
|
-
|
119
|
-
# add items to the cart
|
120
|
-
cart = client.add_items(cart, {:asin => '1430216263', :quantity => 2})
|
121
|
-
cart.empty?
|
122
|
-
=> false
|
123
|
-
|
124
|
-
# update items in the cart
|
125
|
-
cart = client.update_items(cart, {:cart_item_id => cart.items.first.CartItemId, :action => :SaveForLater}, {:cart_item_id => cart.items.first.CartItemId, :quantity => 7})
|
126
|
-
cart.saved_items
|
127
|
-
=> [<#Hashie::Mash ASIN="1430218150" CartItemId="U3G241HVLLB8N6" ... >]
|
128
|
-
|
129
|
-
It's also possible to access browse nodes:
|
130
|
-
|
131
|
-
client = ASIN::Client.instance
|
132
|
-
|
133
|
-
# create a cart with an item
|
134
|
-
node = client.browse_node('163357', :ResponseGroup => :TopSellers)
|
135
|
-
node.node_id
|
136
|
-
=> '163357'
|
137
|
-
node.name
|
138
|
-
=> 'Comedy'
|
139
|
-
|
140
|
-
== Response Configuration
|
141
|
-
|
142
|
-
ASIN is customizable in the way it returns Responses from Amazon.
|
143
|
-
By default it will return +SimpleItem+, +SimpleCart+ or +SimpleNode+ instances,
|
144
|
-
but you can override this behavior for using your custom Classes:
|
145
|
-
|
146
|
-
client.configure :item_type => YourItemClass
|
147
|
-
client.configure :cart_type => YourCartClass
|
148
|
-
client.configure :node_type => YourNodeClass
|
149
|
-
|
150
|
-
You can also use built-in +:raw+, +:mash+ or +:rash+ types.
|
151
|
-
Since +rash+ is an additional library, you need to add it to your gemfile if you want to use it:
|
152
|
-
|
153
|
-
gem 'rash'
|
154
|
-
|
155
|
-
== HTTPI
|
156
|
-
|
157
|
-
ASIN uses HTTPI[https://github.com/rubiii/httpi] as a HTTP-Client adapter.
|
158
|
-
See the HTTPI documentation for how to configure different clients or the logger.
|
159
|
-
As a default HTTPI uses _httpclient_ so you should add that dependency to your project:
|
160
|
-
|
161
|
-
gem 'httpclient'
|
162
|
-
|
163
|
-
|
164
|
-
== License
|
165
|
-
|
166
|
-
"THE BEER-WARE LICENSE" (Revision 42):
|
167
|
-
ps@nofail.de[mailto:ps@nofail.de] wrote this file. As long as you retain this notice you
|
168
|
-
can do whatever you want with this stuff. If we meet some day, and you think
|
169
|
-
this stuff is worth it, you can buy me a beer in return Peter Schröder
|
@@ -1,618 +0,0 @@
|
|
1
|
-
---
|
2
|
-
- !ruby/struct:VCR::HTTPInteraction
|
3
|
-
request: !ruby/struct:VCR::Request
|
4
|
-
method: :get
|
5
|
-
uri: http://webservices.amazon.com:80/onca/xml?AWSAccessKeyId=AKIAJFA5X7RTOKFNPVZQ&ItemId=1430218150&Operation=SimilarityLookup&ResponseGroup=Medium&Service=AWSECommerceService&Signature=//Tlit3OIwGo3YGyA6OWWAqdsdEvjG2/QIXJdhQaJvQ=&SimilarityType=Random&Timestamp=2012-08-02T20:36:43Z&Version=2010-11-01
|
6
|
-
body:
|
7
|
-
headers:
|
8
|
-
response: !ruby/struct:VCR::Response
|
9
|
-
status: !ruby/struct:VCR::ResponseStatus
|
10
|
-
code: 200
|
11
|
-
message: !binary |-
|
12
|
-
T0s=
|
13
|
-
headers:
|
14
|
-
!binary "ZGF0ZQ==":
|
15
|
-
- !binary |-
|
16
|
-
VGh1LCAwMiBBdWcgMjAxMiAyMDozNjozOSBHTVQ=
|
17
|
-
!binary "c2VydmVy":
|
18
|
-
- !binary |-
|
19
|
-
U2VydmVy
|
20
|
-
!binary "Y29udGVudC10eXBl":
|
21
|
-
- !binary |-
|
22
|
-
dGV4dC94bWw7Y2hhcnNldD1VVEYtOA==
|
23
|
-
!binary "dmFyeQ==":
|
24
|
-
- !binary |-
|
25
|
-
QWNjZXB0LUVuY29kaW5nLFVzZXItQWdlbnQ=
|
26
|
-
!binary "bm5jb2VjdGlvbg==":
|
27
|
-
- !binary |-
|
28
|
-
Y2xvc2U=
|
29
|
-
!binary "dHJhbnNmZXItZW5jb2Rpbmc=":
|
30
|
-
- !binary |-
|
31
|
-
Y2h1bmtlZA==
|
32
|
-
body: ! "<?xml version=\"1.0\" encoding=\"UTF-8\"?><SimilarityLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-11-01\"><OperationRequest><HTTPHeaders><Header
|
33
|
-
Name=\"UserAgent\" Value=\"Jakarta Commons-HttpClient/3.0.1\"></Header></HTTPHeaders><RequestId>0CQQWCGVSJ7BMK1MAZXS</RequestId><Arguments><Argument
|
34
|
-
Name=\"ItemId\" Value=\"1430218150\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument
|
35
|
-
Name=\"Signature\" Value=\"//Tlit3OIwGo3YGyA6OWWAqdsdEvjG2/QIXJdhQaJvQ=\"></Argument><Argument
|
36
|
-
Name=\"ResponseGroup\" Value=\"Medium\"></Argument><Argument Name=\"SimilarityType\"
|
37
|
-
Value=\"Random\"></Argument><Argument Name=\"Operation\" Value=\"SimilarityLookup\"></Argument><Argument
|
38
|
-
Name=\"AWSAccessKeyId\" Value=\"AKIAJFA5X7RTOKFNPVZQ\"></Argument><Argument
|
39
|
-
Name=\"Timestamp\" Value=\"2012-08-02T20:36:43Z\"></Argument><Argument Name=\"Version\"
|
40
|
-
Value=\"2010-11-01\"></Argument></Arguments><RequestProcessingTime>0.19145393371582</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><SimilarityLookupRequest><ItemId>1430218150</ItemId><ResponseGroup>Medium</ResponseGroup><SimilarityType>Random</SimilarityType></SimilarityLookupRequest></Request><Item><ASIN>1430218096</ASIN><DetailPageURL>http://www.amazon.com/Learn-C-Mac-Dave-Mark/dp/1430218096%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1430218096</DetailPageURL><ItemLinks><ItemLink><Description>Technical
|
41
|
-
Details</Description><URL>http://www.amazon.com/Learn-C-Mac-Dave-Mark/dp/tech-data/1430218096%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218096</URL></ItemLink><ItemLink><Description>Add
|
42
|
-
To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1430218096%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218096</URL></ItemLink><ItemLink><Description>Add
|
43
|
-
To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1430218096%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218096</URL></ItemLink><ItemLink><Description>Add
|
44
|
-
To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1430218096%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218096</URL></ItemLink><ItemLink><Description>Tell
|
45
|
-
A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/1430218096%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218096</URL></ItemLink><ItemLink><Description>All
|
46
|
-
Customer Reviews</Description><URL>http://www.amazon.com/review/product/1430218096%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218096</URL></ItemLink><ItemLink><Description>All
|
47
|
-
Offers</Description><URL>http://www.amazon.com/gp/offer-listing/1430218096%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218096</URL></ItemLink></ItemLinks><SalesRank>370162</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/41JbIvZnXjL._SL75_.jpg</URL><Height
|
48
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">57</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41JbIvZnXjL._SL160_.jpg</URL><Height
|
49
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">121</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41JbIvZnXjL._SL500_.jpg</URL><Height
|
50
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">378</Width></LargeImage><ImageSets><ImageSet
|
51
|
-
Category=\"primary\"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41JbIvZnXjL._SL30_.jpg</URL><Height
|
52
|
-
Units=\"pixels\">30</Height><Width Units=\"pixels\">23</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41JbIvZnXjL._SL75_.jpg</URL><Height
|
53
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">57</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41JbIvZnXjL._SL75_.jpg</URL><Height
|
54
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">57</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41JbIvZnXjL._SL110_.jpg</URL><Height
|
55
|
-
Units=\"pixels\">110</Height><Width Units=\"pixels\">83</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41JbIvZnXjL._SL160_.jpg</URL><Height
|
56
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">121</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41JbIvZnXjL._SL500_.jpg</URL><Height
|
57
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">378</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Dave
|
58
|
-
Mark</Author><Binding>Paperback</Binding><Brand>Apress</Brand><CatalogNumberList><CatalogNumberListElement>9781430218098</CatalogNumberListElement></CatalogNumberList><DeweyDecimalNumber>005.133</DeweyDecimalNumber><EAN>9781430218098</EAN><EANList><EANListElement>9781430218098</EANListElement></EANList><Edition>1</Edition><Feature>Apress
|
59
|
-
Learn C on the Mac</Feature><Feature>Considered a classic by an entire generation
|
60
|
-
of Mac programmers, this popular guide has been completely updated for Mac OS
|
61
|
-
X.</Feature><ISBN>1430218096</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><ItemDimensions><Height
|
62
|
-
Units=\"hundredths-inches\">925</Height><Length Units=\"hundredths-inches\">752</Length><Weight
|
63
|
-
Units=\"hundredths-pounds\">144</Weight><Width Units=\"hundredths-inches\">75</Width></ItemDimensions><Label>Apress</Label><ListPrice><Amount>3999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$39.99</FormattedPrice></ListPrice><Manufacturer>Apress</Manufacturer><MPN>978-1-4302-1809-8</MPN><NumberOfItems>1</NumberOfItems><NumberOfPages>376</NumberOfPages><PackageDimensions><Height
|
64
|
-
Units=\"hundredths-inches\">100</Height><Length Units=\"hundredths-inches\">920</Length><Weight
|
65
|
-
Units=\"hundredths-pounds\">120</Weight><Width Units=\"hundredths-inches\">710</Width></PackageDimensions><PartNumber>978-1-4302-1809-8</PartNumber><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2008-12-12</PublicationDate><Publisher>Apress</Publisher><SKU>1430218096BAKM</SKU><Studio>Apress</Studio><Title>Learn
|
66
|
-
C on the Mac (Learn Series)</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>2396</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.96</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1656</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.56</FormattedPrice></LowestUsedPrice><TotalNew>44</TotalNew><TotalUsed>39</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
|
67
|
-
Description</Source><Content><p>Considered a classic by an entire generation
|
68
|
-
of Mac programmers, this popular guide has been completely updated for Mac OS
|
69
|
-
X. DonÃ\x95t know anything about programming? No problem! Acclaimed author Dave
|
70
|
-
Mark starts out with the basics and takes you through a complete course in programming
|
71
|
-
C using AppleÃ\x95s free Xcode tools. This book is perfect for beginners learning
|
72
|
-
to program. It includes allâ\x80\x94new Mac OS X examples!<ul><li>Provides
|
73
|
-
best practices for programming newbies<li>Written by the expert on Câ\x80\x94programming
|
74
|
-
for the Mac<li>Presents all the basics with a pragmatic, Mac OS X flavored
|
75
|
-
approach</ul></p><p><b>What youÃ\x95ll learn</b></p><ul><li>Master
|
76
|
-
C programming, the gateway to programming your Mac or iPhone.<li>Write
|
77
|
-
applications for the Mac OS X interface, the cleanest user interface around.<li>Understand
|
78
|
-
variables and how to design your own data structures.<li>Work with the
|
79
|
-
file system.<li>Connect to data sources and the Internet.</ul></p><p><b>Who
|
80
|
-
is this book for</b></p><p>For anyone wanting to learn to
|
81
|
-
program in Mac OS X, including developers new to the Mac, developers new to
|
82
|
-
C, or students entirely new to programming. For anyone who wants to learn how
|
83
|
-
to program their iPhone, this is also the core language primer.</p></Content></EditorialReview></EditorialReviews></Item><Item><ASIN>1430218592</ASIN><DetailPageURL>http://www.amazon.com/Learn-Cocoa-Mac-Jack-Nutting/dp/1430218592%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1430218592</DetailPageURL><ItemLinks><ItemLink><Description>Technical
|
84
|
-
Details</Description><URL>http://www.amazon.com/Learn-Cocoa-Mac-Jack-Nutting/dp/tech-data/1430218592%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218592</URL></ItemLink><ItemLink><Description>Add
|
85
|
-
To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1430218592%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218592</URL></ItemLink><ItemLink><Description>Add
|
86
|
-
To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1430218592%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218592</URL></ItemLink><ItemLink><Description>Add
|
87
|
-
To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1430218592%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218592</URL></ItemLink><ItemLink><Description>Tell
|
88
|
-
A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/1430218592%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218592</URL></ItemLink><ItemLink><Description>All
|
89
|
-
Customer Reviews</Description><URL>http://www.amazon.com/review/product/1430218592%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218592</URL></ItemLink><ItemLink><Description>All
|
90
|
-
Offers</Description><URL>http://www.amazon.com/gp/offer-listing/1430218592%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430218592</URL></ItemLink></ItemLinks><SalesRank>404404</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/41SFiBgWCOL._SL75_.jpg</URL><Height
|
91
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">57</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41SFiBgWCOL._SL160_.jpg</URL><Height
|
92
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">121</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41SFiBgWCOL._SL500_.jpg</URL><Height
|
93
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">379</Width></LargeImage><ImageSets><ImageSet
|
94
|
-
Category=\"primary\"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41SFiBgWCOL._SL30_.jpg</URL><Height
|
95
|
-
Units=\"pixels\">30</Height><Width Units=\"pixels\">23</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41SFiBgWCOL._SL75_.jpg</URL><Height
|
96
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">57</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41SFiBgWCOL._SL75_.jpg</URL><Height
|
97
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">57</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41SFiBgWCOL._SL110_.jpg</URL><Height
|
98
|
-
Units=\"pixels\">110</Height><Width Units=\"pixels\">83</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41SFiBgWCOL._SL160_.jpg</URL><Height
|
99
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">121</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41SFiBgWCOL._SL500_.jpg</URL><Height
|
100
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">379</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Jack
|
101
|
-
Nutting</Author><Author>Dave Mark</Author><Author>Jeff LaMarche</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.268</DeweyDecimalNumber><EAN>9781430218593</EAN><EANList><EANListElement>9781430218593</EANListElement></EANList><Edition>1</Edition><ISBN>1430218592</ISBN><ItemDimensions><Height
|
102
|
-
Units=\"hundredths-inches\">925</Height><Length Units=\"hundredths-inches\">752</Length><Weight
|
103
|
-
Units=\"hundredths-pounds\">148</Weight><Width Units=\"hundredths-inches\">79</Width></ItemDimensions><Label>Apress</Label><ListPrice><Amount>3999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$39.99</FormattedPrice></ListPrice><Manufacturer>Apress</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>374</NumberOfPages><PackageDimensions><Height
|
104
|
-
Units=\"hundredths-inches\">118</Height><Length Units=\"hundredths-inches\">1087</Length><Weight
|
105
|
-
Units=\"hundredths-pounds\">234</Weight><Width Units=\"hundredths-inches\">850</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2010-02-24</PublicationDate><Publisher>Apress</Publisher><SKU>ING1430218592</SKU><Studio>Apress</Studio><Title>Learn
|
106
|
-
Cocoa on the Mac (Learn Series)</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>498</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.98</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>140</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.40</FormattedPrice></LowestUsedPrice><TotalNew>53</TotalNew><TotalUsed>45</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
|
107
|
-
Description</Source><Content><p>The Cocoa frameworks are some of the most
|
108
|
-
powerful frameworks for creating native desktop applications available on any
|
109
|
-
platform today, and Apple gives them away, along with the Xcode development
|
110
|
-
environment, for free! However, for a first-time Mac developer, just firing
|
111
|
-
up Xcode and starting to browse the documentation can be a daunting task. The
|
112
|
-
Objective-C class reference documentation alone would fill thousands of printed
|
113
|
-
pages, not to mention all the other tutorials and guides included with Xcode.
|
114
|
-
Where do you start? Which classes are you going to need to use? How do you use
|
115
|
-
Xcode and the rest of the tools?</p> <p>This book answers these
|
116
|
-
questions and more, helping you find your way through the jungle of classes,
|
117
|
-
tools, and new concepts so that you can get started on the next great Mac OS
|
118
|
-
X application <em>today</em>. <strong>Jack Nutting</strong>
|
119
|
-
is your guide through this forest; he's lived here for years, and he'll show
|
120
|
-
you which boulder to push, which vine to chop, and which stream to float across
|
121
|
-
in order to make it through. You will learn not only how to use the components
|
122
|
-
of this rich framework, but also which of them fit together, and why.</p>
|
123
|
-
<p><strong>Jack Nutting</strong>'s approach, combining pragmatic
|
124
|
-
problem-solving with a deep respect for the underlying design philosophies contained
|
125
|
-
within Cocoa, stems from years of experience using these frameworks. He'll show
|
126
|
-
you which parts of your application require you to jump in and code a solution,
|
127
|
-
and which parts are best served by letting Cocoa take you where it wants you
|
128
|
-
to go. The path over what looks like a mountain of components and APIs has never
|
129
|
-
been more thoroughly prepared for your travels. With Jack's guidance, the steep
|
130
|
-
learning curve becomes a pleasurable adventure. There is still much work for
|
131
|
-
the uninitiated, but by the time you're done, you will be well on your way to
|
132
|
-
becoming a Cocoa master.</p> <h3>What you'll learn</h3><ul>
|
133
|
-
\ <li>How to actually make your own Cocoa applications&#151;this
|
134
|
-
is much more than just a quick introduction to Cocoa! </li> <li>Which
|
135
|
-
classes, of the dozens included in Cocoa, are truly central to Cocoa development
|
136
|
-
</li> <li>How to best use MVC architecture concepts in a Cocoa
|
137
|
-
application </li> <li>How the various pieces of the Cocoa frameworks
|
138
|
-
fit with each other and into the MVC architecture </li> <li>Which
|
139
|
-
parts of Cocoa truly enable &#147;visual programming&#148;, letting
|
140
|
-
you reap the benefits of proven, reusable code libraries that Apple gives you
|
141
|
-
for free </li> <li>How to recognize recurring design patterns
|
142
|
-
used throughout Cocoa, and put them to proper use in your own code </li>
|
143
|
-
\ <li>How to approach Cocoa from different programming environments
|
144
|
-
</li> <li>How to use the facilities provided in Snow Leopard
|
145
|
-
to create software that distributes itself automatically among all available
|
146
|
-
CPUs, improving the user experience for your users. </li> </ul>
|
147
|
-
<h3>Who this book is for</h3> <p> Anyone with basic
|
148
|
-
understanding of object-oriented programming who wants to try out Mac OS X application
|
149
|
-
programming, as well as iPhone developers who want to extend their knowledge
|
150
|
-
of Cocoa touch to include the Mac-specific technologies included with Cocoa.
|
151
|
-
\ </p> <h3>Table of Contents</h3><ol> <li>Must
|
152
|
-
Love Cocoa</li> <li>Hello, World</li> <li>Lights,
|
153
|
-
Camera... Actions! (and Outlets, Too) </li> <li>GUI Components</li>
|
154
|
-
\ <li>Using Table Views</li> <li>Cocoa Bindings</li>
|
155
|
-
\ <li>Core Data Basics</li> <li>Core Data Relationships</li>
|
156
|
-
\ <li>Search and Retrieve Core Data with Criteria </li> <li>Windows
|
157
|
-
and Menus and Sheets</li> <li>Document-Based Applications</li>
|
158
|
-
\ <li>Exceptions, Signals, Errors, and Debugging</li> <li>Drawing
|
159
|
-
in Cocoa</li> <li>Advanced Drawing Topics</li> <li>Working
|
160
|
-
with Files</li> <li>Concurrency</li> <li>Future
|
161
|
-
Paths</li> </ol> <!--Session data--></Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews></Item><Item><ASIN>143023024X</ASIN><DetailPageURL>http://www.amazon.com/Beginning-iPhone-Development-Exploring-iOS/dp/143023024X%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D143023024X</DetailPageURL><ItemLinks><ItemLink><Description>Technical
|
162
|
-
Details</Description><URL>http://www.amazon.com/Beginning-iPhone-Development-Exploring-iOS/dp/tech-data/143023024X%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143023024X</URL></ItemLink><ItemLink><Description>Add
|
163
|
-
To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D143023024X%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143023024X</URL></ItemLink><ItemLink><Description>Add
|
164
|
-
To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D143023024X%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143023024X</URL></ItemLink><ItemLink><Description>Add
|
165
|
-
To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D143023024X%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143023024X</URL></ItemLink><ItemLink><Description>Tell
|
166
|
-
A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/143023024X%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143023024X</URL></ItemLink><ItemLink><Description>All
|
167
|
-
Customer Reviews</Description><URL>http://www.amazon.com/review/product/143023024X%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143023024X</URL></ItemLink><ItemLink><Description>All
|
168
|
-
Offers</Description><URL>http://www.amazon.com/gp/offer-listing/143023024X%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143023024X</URL></ItemLink></ItemLinks><SalesRank>135652</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/4111A463xZL._SL75_.jpg</URL><Height
|
169
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/4111A463xZL._SL160_.jpg</URL><Height
|
170
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">131</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/4111A463xZL._SL500_.jpg</URL><Height
|
171
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">408</Width></LargeImage><ImageSets><ImageSet
|
172
|
-
Category=\"primary\"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/4111A463xZL._SL30_.jpg</URL><Height
|
173
|
-
Units=\"pixels\">30</Height><Width Units=\"pixels\">24</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/4111A463xZL._SL75_.jpg</URL><Height
|
174
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/4111A463xZL._SL75_.jpg</URL><Height
|
175
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/4111A463xZL._SL110_.jpg</URL><Height
|
176
|
-
Units=\"pixels\">110</Height><Width Units=\"pixels\">90</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/4111A463xZL._SL160_.jpg</URL><Height
|
177
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">131</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/4111A463xZL._SL500_.jpg</URL><Height
|
178
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">408</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>David
|
179
|
-
Mark</Author><Author>Jack Nutting</Author><Author>Jeff LaMarche</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.26</DeweyDecimalNumber><EAN>9781430230243</EAN><EANList><EANListElement>9781430230243</EANListElement></EANList><Edition>1</Edition><ISBN>143023024X</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><ItemDimensions><Height
|
180
|
-
Units=\"hundredths-inches\">925</Height><Length Units=\"hundredths-inches\">752</Length><Weight
|
181
|
-
Units=\"hundredths-pounds\">252</Weight><Width Units=\"hundredths-inches\">134</Width></ItemDimensions><Label>Apress</Label><ListPrice><Amount>3999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$39.99</FormattedPrice></ListPrice><Manufacturer>Apress</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>676</NumberOfPages><PackageDimensions><Height
|
182
|
-
Units=\"hundredths-inches\">150</Height><Length Units=\"hundredths-inches\">920</Length><Weight
|
183
|
-
Units=\"hundredths-pounds\">250</Weight><Width Units=\"hundredths-inches\">740</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2011-01-28</PublicationDate><Publisher>Apress</Publisher><SKU>ACOUK_book_usedlikenew_143023024X</SKU><Studio>Apress</Studio><Title>Beginning
|
184
|
-
iPhone 4 Development: Exploring the iOS SDK</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1750</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.50</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>794</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.94</FormattedPrice></LowestUsedPrice><TotalNew>47</TotalNew><TotalUsed>47</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
|
185
|
-
Description</Source><Content><p><em>Beginning iPhone 4 Development</em>
|
186
|
-
is here! The authors of the bestselling <em>Beginning iPhone 3 Development</em>
|
187
|
-
are back, with the same excellent material completely updated for iOS 4 and
|
188
|
-
written from the ground up using the latest version of Apple's Xcode 3. All
|
189
|
-
source code has been updated to use the latest Xcode templates and current APIs,
|
190
|
-
and all-new screenshots show Xcode 3 in action.<br /> <br /> <em>Beginning
|
191
|
-
iPhone 4 Development</em> is a complete course in iOS 4 apps development.
|
192
|
-
You'll master techniques that work on iPhone, iPad, and iPod touch. We start
|
193
|
-
with the basics, showing you how to download and install the tools you'll need,
|
194
|
-
and how to create your first simple application. Next you'll learn to integrate
|
195
|
-
all the interface elements iOS users have come to know and love, such as buttons,
|
196
|
-
switches, pickers, toolbars, and sliders. You'll master a variety of design
|
197
|
-
patterns, from the simplest single view to complex hierarchical drill-downs.
|
198
|
-
The confusing art of table building will be demystified, and you'll learn techniques
|
199
|
-
to save and retrieve your data using SQLite, iPhone's built-in database management
|
200
|
-
system and Core Data, the standard for persistence that Apple brought to iOS
|
201
|
-
with the release of SDK 3. <br /> <br /> And there's much more!
|
202
|
-
You'll learn to draw using Quartz 2D and OpenGL ES, add multitouch gestural
|
203
|
-
support (pinches and swipes) to your applications, and work with the camera,
|
204
|
-
photo library, accelerometer, and built-in GPS. You'll discover the fine points
|
205
|
-
of application preferences and learn how to localize your apps for multiple
|
206
|
-
languages. You'll also learn how to use the new concurrency APIs included in
|
207
|
-
iOS 4, and make robust multithreaded applications using Grand Central Dispatch.
|
208
|
-
</p> <ul> <li>The iPhone 4 update to the best-selling
|
209
|
-
and most recommended book for Cocoa touch developers </li> <li>Written
|
210
|
-
in an accessible, easy-to-follow style </li> <li>Full of useful
|
211
|
-
tips and techniques to help you become an iOS pro </li> </ul> <p>NOTE:
|
212
|
-
For iPhone 4S or iOS 5 apps development, please instead check out the next edition
|
213
|
-
of this book, <em>Beginning iOS 5 Development</em> - now available.</p>
|
214
|
-
<h3>What you'll learn</h3><ul> <li>Everything you
|
215
|
-
need to know to develop your own best-selling iPhone and iPad apps </li>
|
216
|
-
\ <li>Best practices for optimizing your code and delivering great
|
217
|
-
user experiences </li> <li>How to create &#147;universal&#148;
|
218
|
-
apps for both iPhone and iPad </li> </ul> <h3>Who this book
|
219
|
-
is for</h3> <p> Anyone who wants to start developing
|
220
|
-
for iPhone, iPad, and iPod touch.<br /> <br /> You can discover
|
221
|
-
more about this book, download source code, and find support forums at the book's
|
222
|
-
companion site, at www.iphonedevbook.com. </p> <h3>Table
|
223
|
-
of Contents</h3><ol> <li>Welcome to the Jungle </li>
|
224
|
-
\ <li>Appeasing the Tiki Gods </li> <li>Handling Basic
|
225
|
-
Interaction </li> <li>More User Interface Fun </li> <li>Autorotation
|
226
|
-
and Autosizing </li> <li>Multiview Applications </li>
|
227
|
-
\ <li>Tab Bars and Pickers </li> <li>Introduction to
|
228
|
-
Table Views </li> <li>Navigation Controllers and Table Views
|
229
|
-
</li> <li>iPad Considerations </li> <li>Application
|
230
|
-
Settings and User Defaults </li> <li>Basic Data Persistence
|
231
|
-
</li> <li>Grand Central Dispatch, Background Processing, and
|
232
|
-
You </li> <li>Drawing with Quartz and OpenGL </li> <li>Taps,
|
233
|
-
Touches, and Gestures </li> <li>Where Am I? Finding Your Way
|
234
|
-
with Core Location </li> <li>Whee! Gyro and Accelerometer! </li>
|
235
|
-
\ <li>iPhone Camera and Photo Library </li> <li>Application
|
236
|
-
Localization </li> <li>Where to Next? </li> </ol></Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews></Item><Item><ASIN>1430236051</ASIN><DetailPageURL>http://www.amazon.com/Beginning-iOS-Development-Exploring-SDK/dp/1430236051%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1430236051</DetailPageURL><ItemLinks><ItemLink><Description>Technical
|
237
|
-
Details</Description><URL>http://www.amazon.com/Beginning-iOS-Development-Exploring-SDK/dp/tech-data/1430236051%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430236051</URL></ItemLink><ItemLink><Description>Add
|
238
|
-
To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1430236051%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430236051</URL></ItemLink><ItemLink><Description>Add
|
239
|
-
To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1430236051%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430236051</URL></ItemLink><ItemLink><Description>Add
|
240
|
-
To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1430236051%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430236051</URL></ItemLink><ItemLink><Description>Tell
|
241
|
-
A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/1430236051%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430236051</URL></ItemLink><ItemLink><Description>All
|
242
|
-
Customer Reviews</Description><URL>http://www.amazon.com/review/product/1430236051%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430236051</URL></ItemLink><ItemLink><Description>All
|
243
|
-
Offers</Description><URL>http://www.amazon.com/gp/offer-listing/1430236051%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430236051</URL></ItemLink></ItemLinks><SalesRank>22064</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/41qRxmh48mL._SL75_.jpg</URL><Height
|
244
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41qRxmh48mL._SL160_.jpg</URL><Height
|
245
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">130</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41qRxmh48mL._SL500_.jpg</URL><Height
|
246
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">405</Width></LargeImage><ImageSets><ImageSet
|
247
|
-
Category=\"primary\"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41qRxmh48mL._SL30_.jpg</URL><Height
|
248
|
-
Units=\"pixels\">30</Height><Width Units=\"pixels\">24</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41qRxmh48mL._SL75_.jpg</URL><Height
|
249
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41qRxmh48mL._SL75_.jpg</URL><Height
|
250
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41qRxmh48mL._SL110_.jpg</URL><Height
|
251
|
-
Units=\"pixels\">110</Height><Width Units=\"pixels\">89</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41qRxmh48mL._SL160_.jpg</URL><Height
|
252
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">130</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41qRxmh48mL._SL500_.jpg</URL><Height
|
253
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">405</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>David
|
254
|
-
Mark</Author><Author>Jack Nutting</Author><Author>Jeff LaMarche</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.25</DeweyDecimalNumber><EAN>9781430236054</EAN><EANList><EANListElement>9781430236054</EANListElement></EANList><Edition>1</Edition><ISBN>1430236051</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><ItemDimensions><Height
|
255
|
-
Units=\"hundredths-inches\">925</Height><Length Units=\"hundredths-inches\">752</Length><Weight
|
256
|
-
Units=\"hundredths-pounds\">280</Weight><Width Units=\"hundredths-inches\">150</Width></ItemDimensions><Label>Apress</Label><ListPrice><Amount>3999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$39.99</FormattedPrice></ListPrice><Manufacturer>Apress</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>752</NumberOfPages><PackageDimensions><Height
|
257
|
-
Units=\"hundredths-inches\">190</Height><Length Units=\"hundredths-inches\">920</Length><Weight
|
258
|
-
Units=\"hundredths-pounds\">285</Weight><Width Units=\"hundredths-inches\">750</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2011-12-07</PublicationDate><Publisher>Apress</Publisher><SKU>ACOUK_book_new_1430236051</SKU><Studio>Apress</Studio><Title>Beginning
|
259
|
-
iOS 5 Development: Exploring the iOS SDK</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>2279</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$22.79</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></LowestUsedPrice><TotalNew>31</TotalNew><TotalUsed>14</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
|
260
|
-
Description</Source><Content><p>The team that brought you the bestselling <em>Beginning
|
261
|
-
iPhone 4 Development</em> is back again for <em>Beginning iOS 5
|
262
|
-
Development</em>, bringing this definitive guide up-to-date with Apple's
|
263
|
-
latest and greatest iOS SDK, as well as with the latest version of Xcode. <br
|
264
|
-
/> <br /> There's coverage of brand new technologies, with chapters
|
265
|
-
on storyboards and iCloud, for example, as well as significant updates to existing
|
266
|
-
chapters to bring them in line with all the changes that came with the iOS 5
|
267
|
-
SDK. You'll have everything you need to create your very own apps for the latest
|
268
|
-
iOS devices, including the iPhone 4S, iPad 2, and the latest iPod touch. Every
|
269
|
-
single sample program in the book has been rebuilt from scratch using Xcode
|
270
|
-
4.2 and the latest iOS 5-specific project templates and designed to take advantage
|
271
|
-
of the latest Xcode features.<br /> <br /> Assuming only a minimal
|
272
|
-
working knowledge of Objective-C, and written in a friendly, easy-to-follow
|
273
|
-
style, <em>Beginning iOS 5 Development</em> offers a complete soup-to-nuts
|
274
|
-
course in iPhone, iPad, and iPod touch programming. The book starts with the
|
275
|
-
basics, walking through the process of downloading and installing Xcode and
|
276
|
-
the iOS 5 SDK, and then guides you though the creation of your first simple
|
277
|
-
application. <br /> <br /> From there, you'll learn how to integrate
|
278
|
-
all the interface elements Apple touch users have come to know and love, such
|
279
|
-
as buttons, switches, pickers, toolbars, and sliders. You'll master a variety
|
280
|
-
of design patterns, from the simplest single view to complex hierarchical drill-downs.
|
281
|
-
The confusing art of table building will be demystified, and you'll learn how
|
282
|
-
to save your data using the iPhone file system. You'll also learn how to save
|
283
|
-
and retrieve your data using a variety of persistence techniques, including
|
284
|
-
Core Data and SQLite. And there's much more! You'll learn to draw using Quartz
|
285
|
-
2D and OpenGL ES, add multitouch gestural support (pinches and swipes) to your
|
286
|
-
applications, and work with the camera, photo library, accelerometer, and built-in
|
287
|
-
GPS. You'll discover the fine points of application preferences and learn how
|
288
|
-
to localize your apps for multiple languages.</p> <ul> <li>The
|
289
|
-
iOS 5 update to the bestselling and most recommended book for Cocoa touch developers
|
290
|
-
</li> <li>Packed full of tricks, techniques, and enthusiasm
|
291
|
-
for the new SDK from a developer perspective </li> <li>Written
|
292
|
-
in an accessible, easy-to-follow style </li> </ul> <h3>What
|
293
|
-
you'll learn</h3><ul> <li>Everything you need to know
|
294
|
-
to develop your own bestselling iPhone and iPad apps </li> <li>Best
|
295
|
-
practices for optimizing your code and delivering great user experiences </li>
|
296
|
-
\ <li>How to create &#147;universal&#148; apps for both the
|
297
|
-
iPhone and iPad </li> <li>What is data persistence and why is
|
298
|
-
it important </li> <li>Get started with building cool, crisp
|
299
|
-
User Interfaces </li> <li>What and how to use Table Views </li>
|
300
|
-
\ <li>How to do graphics with Quartz and OpenGL ES </li> <li>What
|
301
|
-
geo app development features the new iOS 5 brings to the iPhone 4S </li>
|
302
|
-
\ <li>How to get your app in iCloud </li> <li>And much
|
303
|
-
much more... </li> </ul> <h3>Who this book is for</h3>
|
304
|
-
\ <p> Everyone who wants to start developing for iPhone, iPod
|
305
|
-
touch, and iPad! <p> For the latest sourcecode, please head to www.iphonedevbook.com.</p>
|
306
|
-
\ </p> <h3>Table of Contents</h3><ol> <li>Welcome
|
307
|
-
to the Jungle </li> <li>Appeasing the Tiki Gods </li>
|
308
|
-
\ <li>Handling Basic Interaction </li> <li>More User
|
309
|
-
Interface Fun </li> <li>Autorotation and Autosizing </li>
|
310
|
-
\ <li>Multiview Applications </li> <li>Tab Bars and
|
311
|
-
Pickers </li> <li>Introduction to Table Views </li> <li>Navigation
|
312
|
-
Controllers and Table Views </li> <li>iPad Considerations </li>
|
313
|
-
\ <li>Application Settings and User Defaults </li> <li>Basic
|
314
|
-
Data Persistence </li> <li>Get Your App in the iCloud </li>
|
315
|
-
\ <li>Grand Central Dispatch, Background Processing, and You </li>
|
316
|
-
\ <li>Drawing with Quartz and OpenGL </li> <li>Taps,
|
317
|
-
Touches, and Gestures </li> <li>Where Am I? Finding Your Way
|
318
|
-
with Core Location </li> <li>Whee! Gyro and Accelerometer! </li>
|
319
|
-
\ <li>iPhone Camera and Photo Library </li> <li>Application
|
320
|
-
Localization </li> <li>Where to Next? </li> </ol></Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews></Item><Item><ASIN>1430216263</ASIN><DetailPageURL>http://www.amazon.com/Beginning-iPhone-Development-Exploring-SDK/dp/1430216263%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1430216263</DetailPageURL><ItemLinks><ItemLink><Description>Technical
|
321
|
-
Details</Description><URL>http://www.amazon.com/Beginning-iPhone-Development-Exploring-SDK/dp/tech-data/1430216263%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430216263</URL></ItemLink><ItemLink><Description>Add
|
322
|
-
To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1430216263%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430216263</URL></ItemLink><ItemLink><Description>Add
|
323
|
-
To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1430216263%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430216263</URL></ItemLink><ItemLink><Description>Add
|
324
|
-
To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1430216263%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430216263</URL></ItemLink><ItemLink><Description>Tell
|
325
|
-
A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/1430216263%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430216263</URL></ItemLink><ItemLink><Description>All
|
326
|
-
Customer Reviews</Description><URL>http://www.amazon.com/review/product/1430216263%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430216263</URL></ItemLink><ItemLink><Description>All
|
327
|
-
Offers</Description><URL>http://www.amazon.com/gp/offer-listing/1430216263%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430216263</URL></ItemLink></ItemLinks><SalesRank>63583</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/41E6e5kF3xL._SL75_.jpg</URL><Height
|
328
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">57</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41E6e5kF3xL._SL160_.jpg</URL><Height
|
329
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">121</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41E6e5kF3xL._SL500_.jpg</URL><Height
|
330
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">378</Width></LargeImage><ImageSets><ImageSet
|
331
|
-
Category=\"primary\"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41E6e5kF3xL._SL30_.jpg</URL><Height
|
332
|
-
Units=\"pixels\">30</Height><Width Units=\"pixels\">23</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41E6e5kF3xL._SL75_.jpg</URL><Height
|
333
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">57</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41E6e5kF3xL._SL75_.jpg</URL><Height
|
334
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">57</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41E6e5kF3xL._SL110_.jpg</URL><Height
|
335
|
-
Units=\"pixels\">110</Height><Width Units=\"pixels\">83</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41E6e5kF3xL._SL160_.jpg</URL><Height
|
336
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">121</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41E6e5kF3xL._SL500_.jpg</URL><Height
|
337
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">378</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Jeff
|
338
|
-
LaMarche</Author><Author>Dave Mark</Author><Binding>Paperback</Binding><Brand>Apress</Brand><CatalogNumberList><CatalogNumberListElement>9781430216261</CatalogNumberListElement></CatalogNumberList><DeweyDecimalNumber>005.26</DeweyDecimalNumber><EAN>9781430216261</EAN><EANList><EANListElement>9781430216261</EANListElement></EANList><Edition>1</Edition><Feature>Apress
|
339
|
-
Beginning iPhone Development: Exporing the iPhone SDK</Feature><Feature>Are
|
340
|
-
you a programmer looking for a new challenge? Does the thought of building your
|
341
|
-
very own iPhone app make your heart race and your pulse quicken? If so, then
|
342
|
-
Beginning iPhone Development is just the book for you.</Feature><IsAdultProduct>0</IsAdultProduct><ISBN>1430216263</ISBN><ItemDimensions><Height
|
343
|
-
Units=\"hundredths-inches\">925</Height><Length Units=\"hundredths-inches\">752</Length><Weight
|
344
|
-
Units=\"hundredths-pounds\">202</Weight><Width Units=\"hundredths-inches\">106</Width></ItemDimensions><Label>Apress</Label><ListPrice><Amount>3999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$39.99</FormattedPrice></ListPrice><Manufacturer>Apress</Manufacturer><MPN>9781430216261</MPN><NumberOfItems>1</NumberOfItems><NumberOfPages>536</NumberOfPages><PackageDimensions><Height
|
345
|
-
Units=\"hundredths-inches\">130</Height><Length Units=\"hundredths-inches\">920</Length><Weight
|
346
|
-
Units=\"hundredths-pounds\">190</Weight><Width Units=\"hundredths-inches\">690</Width></PackageDimensions><PartNumber>9781430216261</PartNumber><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2008-11-21</PublicationDate><Publisher>Apress</Publisher><SKU>ACOUK_book_usedverygood_1430216263</SKU><Studio>Apress</Studio><Title>Beginning
|
347
|
-
iPhone Development: Exploring the iPhone SDK</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>499</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.99</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>10</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$0.10</FormattedPrice></LowestUsedPrice><TotalNew>51</TotalNew><TotalUsed>88</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
|
348
|
-
Description</Source><Content><p> Are you a programmer looking for a new
|
349
|
-
challenge? Does the thought of building your very own iPhone app make your heart
|
350
|
-
race and your pulse quicken? If so, then Beginning iPhone Development is just
|
351
|
-
the book for you. </p> <p> Assuming only a minimal working knowledge
|
352
|
-
of Objective-C, and written in a friendly, easy-to-follow style, Beginning iPhone
|
353
|
-
Development offers a complete soup-to-nuts course in iPhone and iPod touch programming.
|
354
|
-
</p> <p> The book starts with the basics, walking you through the
|
355
|
-
process of downloading and installing Apple's free iPhone SDK, then stepping
|
356
|
-
you though the creation of your first simple iPhone application. You'll move
|
357
|
-
on from there, mastering all the iPhone interface elements that you've come
|
358
|
-
to know and love, such as buttons, switches, pickers, toolbars, sliders, etc.
|
359
|
-
</p> <p> You'll master a variety of design patterns, from the simplest
|
360
|
-
single view to complex hierarchical drill-downs. You'll master the art of table-building
|
361
|
-
and learn how to save your data using the iPhone file system. You'll also learn
|
362
|
-
how to save and retrieve your data using SQLite, iPhone's built-in database
|
363
|
-
management system. </p> <p> You'll learn how to draw using Quartz
|
364
|
-
2D and OpenGL ES. You'll add MultiTouch Gestural Support (pinches and swipes)
|
365
|
-
to your applications, and work with the Camera, Photo Library, and Accelerometer.
|
366
|
-
You'll master application preferences, learn how to localize your apps into
|
367
|
-
other languages, and so much more. </p> <p> Apple's iPhone SDK,
|
368
|
-
this book, and your imagination are all you'll need to start building your very
|
369
|
-
own best-selling iPhone applications. </p><br /><br /></Content></EditorialReview></EditorialReviews></Item><Item><ASIN>1430228326</ASIN><DetailPageURL>http://www.amazon.com/Objective-C-Absolute-Beginners-iPhone-Programming/dp/1430228326%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1430228326</DetailPageURL><ItemLinks><ItemLink><Description>Technical
|
370
|
-
Details</Description><URL>http://www.amazon.com/Objective-C-Absolute-Beginners-iPhone-Programming/dp/tech-data/1430228326%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430228326</URL></ItemLink><ItemLink><Description>Add
|
371
|
-
To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1430228326%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430228326</URL></ItemLink><ItemLink><Description>Add
|
372
|
-
To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1430228326%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430228326</URL></ItemLink><ItemLink><Description>Add
|
373
|
-
To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1430228326%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430228326</URL></ItemLink><ItemLink><Description>Tell
|
374
|
-
A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/1430228326%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430228326</URL></ItemLink><ItemLink><Description>All
|
375
|
-
Customer Reviews</Description><URL>http://www.amazon.com/review/product/1430228326%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430228326</URL></ItemLink><ItemLink><Description>All
|
376
|
-
Offers</Description><URL>http://www.amazon.com/gp/offer-listing/1430228326%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430228326</URL></ItemLink></ItemLinks><SalesRank>425268</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/41c7ciAA%2BCL._SL75_.jpg</URL><Height
|
377
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41c7ciAA%2BCL._SL160_.jpg</URL><Height
|
378
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">130</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41c7ciAA%2BCL._SL500_.jpg</URL><Height
|
379
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">406</Width></LargeImage><ImageSets><ImageSet
|
380
|
-
Category=\"primary\"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41c7ciAA%2BCL._SL30_.jpg</URL><Height
|
381
|
-
Units=\"pixels\">30</Height><Width Units=\"pixels\">24</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41c7ciAA%2BCL._SL75_.jpg</URL><Height
|
382
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41c7ciAA%2BCL._SL75_.jpg</URL><Height
|
383
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41c7ciAA%2BCL._SL110_.jpg</URL><Height
|
384
|
-
Units=\"pixels\">110</Height><Width Units=\"pixels\">89</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41c7ciAA%2BCL._SL160_.jpg</URL><Height
|
385
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">130</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41c7ciAA%2BCL._SL500_.jpg</URL><Height
|
386
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">406</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Gary
|
387
|
-
Bennett</Author><Author>Mitchell Fisher</Author><Author>Brad Lees</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.117</DeweyDecimalNumber><EAN>9781430228325</EAN><EANList><EANListElement>9781430228325</EANListElement></EANList><Edition>1</Edition><IsAdultProduct>0</IsAdultProduct><ISBN>1430228326</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><ItemDimensions><Height
|
388
|
-
Units=\"hundredths-inches\">953</Height><Length Units=\"hundredths-inches\">760</Length><Weight
|
389
|
-
Units=\"hundredths-pounds\">132</Weight><Width Units=\"hundredths-inches\">91</Width></ItemDimensions><Label>Apress</Label><ListPrice><Amount>3999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$39.99</FormattedPrice></ListPrice><Manufacturer>Apress</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>292</NumberOfPages><PackageDimensions><Height
|
390
|
-
Units=\"hundredths-inches\">100</Height><Length Units=\"hundredths-inches\">920</Length><Weight
|
391
|
-
Units=\"hundredths-pounds\">135</Weight><Width Units=\"hundredths-inches\">750</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2010-08-25</PublicationDate><Publisher>Apress</Publisher><ReleaseDate>2010-08-25</ReleaseDate><SKU>ACOMMP2_book_usedverygood_1430228326</SKU><Studio>Apress</Studio><Title>Objective-C
|
392
|
-
for Absolute Beginners: iPhone, iPad and Mac Programming Made Easy</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1794</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.94</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.99</FormattedPrice></LowestUsedPrice><TotalNew>38</TotalNew><TotalUsed>26</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
|
393
|
-
Description</Source><Content><p>It seems as if everyone is writing applications
|
394
|
-
for Apple's iPhone and iPad, but how do they all do it? It's best to learn Objective-C,
|
395
|
-
the native language of both the iOS and Mac OS X, but where to begin? Right
|
396
|
-
here, even if you've never programmed before!</p> <p><em>Objective-C
|
397
|
-
for Absolute Beginners</em> will teach you how to write software for your
|
398
|
-
Mac, iPhone, or iPad using Objective-C, an elegant and powerful language with
|
399
|
-
a rich set of developer tools. Using a hands-on approach, you'll learn to think
|
400
|
-
in programming terms, how to use Objective-C to build program logic, and how
|
401
|
-
to write your own applications and apps.</p> <p>With over 50 collective
|
402
|
-
years in software development and based on an approach pioneered at Carnegie
|
403
|
-
Mellon University, the authors have developed a remarkably effective approach
|
404
|
-
to learning Objective-C. Since the introduction of Apple's iPhone, the authors
|
405
|
-
have taught hundreds of absolute beginners how to develop Mac, iPhone,and iPad
|
406
|
-
apps, including many that became popular apps in the iTunes App Store.</p>
|
407
|
-
<h3>What you'll learn</h3><ul> <li>The fundamentals
|
408
|
-
of computer programming: how to understand variables,design data structures,
|
409
|
-
and work with file systems </li> <li>The logic of object-oriented
|
410
|
-
programming: how to use Classes, Objects, and Methods </li> <li>The
|
411
|
-
flexibility of Apple's developer tools: how to install Xcode and write programs
|
412
|
-
in Objective-C </li> <li>The power of Cocoa and Cocoa touch:
|
413
|
-
how to make Mac OS X applications or iOS apps that do cool stuff </li>
|
414
|
-
</ul> <h3>Who this book is for</h3> <p> Everyone!
|
415
|
-
This book is for anyone who wants to learn to develop applications for the Mac
|
416
|
-
or apps for the iPhone and iPad using the Objective-C programming language.
|
417
|
-
No previous programming experience is necessary. </p> <h3>Table
|
418
|
-
of Contents</h3><ol> <li> Becoming a Great iPhone/iPad
|
419
|
-
or Mac Programmer </li> <li> Programming Basics </li>
|
420
|
-
\ <li> It's All About the Data </li> <li> Making
|
421
|
-
Decisions About...and Planning Program Flow </li> <li> Object
|
422
|
-
Oriented Programming with Objective-C </li> <li> Introducing
|
423
|
-
Objective-C and Xcode </li> <li> Objective-C Classes, Objects,
|
424
|
-
and Methods </li> <li> Programming Basics in Objective-C
|
425
|
-
</li> <li> Comparing Data </li> <li> Creating
|
426
|
-
User Interfaces with Interface Builder </li> <li> Memory,
|
427
|
-
Addresses, and Pointers </li> <li> Debugging Programs with
|
428
|
-
Xcode </li> <li> Storing Information </li> <li> Protocols
|
429
|
-
and Delegates </li> </ol></Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews></Item><Item><ASIN>0321711394</ASIN><DetailPageURL>http://www.amazon.com/Programming-Objective-C-Third-Developers-Library/dp/0321711394%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0321711394</DetailPageURL><ItemLinks><ItemLink><Description>Technical
|
430
|
-
Details</Description><URL>http://www.amazon.com/Programming-Objective-C-Third-Developers-Library/dp/tech-data/0321711394%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321711394</URL></ItemLink><ItemLink><Description>Add
|
431
|
-
To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0321711394%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321711394</URL></ItemLink><ItemLink><Description>Add
|
432
|
-
To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0321711394%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321711394</URL></ItemLink><ItemLink><Description>Add
|
433
|
-
To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0321711394%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321711394</URL></ItemLink><ItemLink><Description>Tell
|
434
|
-
A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0321711394%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321711394</URL></ItemLink><ItemLink><Description>All
|
435
|
-
Customer Reviews</Description><URL>http://www.amazon.com/review/product/0321711394%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321711394</URL></ItemLink><ItemLink><Description>All
|
436
|
-
Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0321711394%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321711394</URL></ItemLink></ItemLinks><SalesRank>197789</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/514GKabDXcL._SL75_.jpg</URL><Height
|
437
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">56</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/514GKabDXcL._SL160_.jpg</URL><Height
|
438
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">120</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/514GKabDXcL._SL500_.jpg</URL><Height
|
439
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">376</Width></LargeImage><ImageSets><ImageSet
|
440
|
-
Category=\"primary\"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/514GKabDXcL._SL30_.jpg</URL><Height
|
441
|
-
Units=\"pixels\">30</Height><Width Units=\"pixels\">23</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/514GKabDXcL._SL75_.jpg</URL><Height
|
442
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">56</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/514GKabDXcL._SL75_.jpg</URL><Height
|
443
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">56</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/514GKabDXcL._SL110_.jpg</URL><Height
|
444
|
-
Units=\"pixels\">110</Height><Width Units=\"pixels\">83</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/514GKabDXcL._SL160_.jpg</URL><Height
|
445
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">120</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/514GKabDXcL._SL500_.jpg</URL><Height
|
446
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">376</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Stephen
|
447
|
-
G. Kochan</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.117</DeweyDecimalNumber><EAN>9780321711397</EAN><EANList><EANListElement>9780321711397</EANListElement></EANList><Edition>3</Edition><ISBN>0321711394</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><ItemDimensions><Height
|
448
|
-
Units=\"hundredths-inches\">902</Height><Length Units=\"hundredths-inches\">701</Length><Weight
|
449
|
-
Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">110</Width></ItemDimensions><Label>Addison-Wesley
|
450
|
-
Professional</Label><ListPrice><Amount>4999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$49.99</FormattedPrice></ListPrice><Manufacturer>Addison-Wesley
|
451
|
-
Professional</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>552</NumberOfPages><PackageDimensions><Height
|
452
|
-
Units=\"hundredths-inches\">110</Height><Length Units=\"hundredths-inches\">906</Length><Weight
|
453
|
-
Units=\"hundredths-pounds\">185</Weight><Width Units=\"hundredths-inches\">709</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2011-06-20</PublicationDate><Publisher>Addison-Wesley
|
454
|
-
Professional</Publisher><SKU>4624400</SKU><Studio>Addison-Wesley Professional</Studio><Title>Programming
|
455
|
-
in Objective-C, Third Edition (Developer's Library)</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>3700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$37.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.00</FormattedPrice></LowestUsedPrice><TotalNew>12</TotalNew><TotalUsed>29</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
|
456
|
-
Description</Source><Content><i>Programming in Objective-C</i> is
|
457
|
-
a concise, carefully written tutorial on the basics of Objective-C and object-oriented
|
458
|
-
programming for the iOS and Mac platforms.<br><br>The book makes
|
459
|
-
no assumptions about prior experience with object-oriented programming languages
|
460
|
-
or with the C language (which Objective-C is based upon). Because of this, both
|
461
|
-
beginners and experienced programmers alike can use this book to quickly and
|
462
|
-
effectively learn the fundamentals of Objective-C. Readers can also learn the
|
463
|
-
concepts of object-oriented programming without having to first learn all of
|
464
|
-
the intricacies of the underlying procedural language (C).<br><br>This
|
465
|
-
unique approach to learning, combined with many small program examples and exercises
|
466
|
-
at the end of each chapter, makes <i>Programming in Objective-C</i>
|
467
|
-
ideally suited for either classroom use or self-study. While the Objective-C
|
468
|
-
language itself has gone through relatively minor changes since the introduction
|
469
|
-
of Objective-C 2.0, the Apple development tools that programmers use for Objective-C
|
470
|
-
development on the Mac and on iOS have changed significantly in a very short
|
471
|
-
period of time. <br><br>The third edition of <i>Programming
|
472
|
-
in Objective-C</i> includes numerous updates and improvements throughout
|
473
|
-
the book:<br><br> <li>Improved organization for some chapters</li>
|
474
|
-
<li>Incorporation of feedback and suggestions from members of the author's
|
475
|
-
forum for readers, including more detailed descriptions for some of the examples</li>
|
476
|
-
<li>A new introduction to blocks with examples</li> <li>Replacement
|
477
|
-
of deprecated methods with newer methods</li> <li>Updated diagrams
|
478
|
-
and steps for using Xcode 4</li></Content></EditorialReview></EditorialReviews></Item><Item><ASIN>143027221X</ASIN><DetailPageURL>http://www.amazon.com/Learn-Xcode-Tools-iPhone-Development/dp/143027221X%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D143027221X</DetailPageURL><ItemLinks><ItemLink><Description>Technical
|
479
|
-
Details</Description><URL>http://www.amazon.com/Learn-Xcode-Tools-iPhone-Development/dp/tech-data/143027221X%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143027221X</URL></ItemLink><ItemLink><Description>Add
|
480
|
-
To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D143027221X%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143027221X</URL></ItemLink><ItemLink><Description>Add
|
481
|
-
To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D143027221X%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143027221X</URL></ItemLink><ItemLink><Description>Add
|
482
|
-
To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D143027221X%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143027221X</URL></ItemLink><ItemLink><Description>Tell
|
483
|
-
A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/143027221X%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143027221X</URL></ItemLink><ItemLink><Description>All
|
484
|
-
Customer Reviews</Description><URL>http://www.amazon.com/review/product/143027221X%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143027221X</URL></ItemLink><ItemLink><Description>All
|
485
|
-
Offers</Description><URL>http://www.amazon.com/gp/offer-listing/143027221X%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D143027221X</URL></ItemLink></ItemLinks><SalesRank>551302</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/4113PjRooOL._SL75_.jpg</URL><Height
|
486
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/4113PjRooOL._SL160_.jpg</URL><Height
|
487
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">130</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/4113PjRooOL._SL500_.jpg</URL><Height
|
488
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">405</Width></LargeImage><ImageSets><ImageSet
|
489
|
-
Category=\"primary\"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/4113PjRooOL._SL30_.jpg</URL><Height
|
490
|
-
Units=\"pixels\">30</Height><Width Units=\"pixels\">24</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/4113PjRooOL._SL75_.jpg</URL><Height
|
491
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/4113PjRooOL._SL75_.jpg</URL><Height
|
492
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/4113PjRooOL._SL110_.jpg</URL><Height
|
493
|
-
Units=\"pixels\">110</Height><Width Units=\"pixels\">89</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/4113PjRooOL._SL160_.jpg</URL><Height
|
494
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">130</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/4113PjRooOL._SL500_.jpg</URL><Height
|
495
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">405</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Ian
|
496
|
-
Piper</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005</DeweyDecimalNumber><EAN>9781430272212</EAN><EANList><EANListElement>9781430272212</EANListElement></EANList><Edition>1</Edition><IsAdultProduct>0</IsAdultProduct><ISBN>143027221X</ISBN><ItemDimensions><Height
|
497
|
-
Units=\"hundredths-inches\">925</Height><Length Units=\"hundredths-inches\">752</Length><Weight
|
498
|
-
Units=\"hundredths-pounds\">131</Weight><Width Units=\"hundredths-inches\">71</Width></ItemDimensions><Label>Apress</Label><ListPrice><Amount>4499</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$44.99</FormattedPrice></ListPrice><Manufacturer>Apress</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>450</NumberOfPages><PackageDimensions><Height
|
499
|
-
Units=\"hundredths-inches\">110</Height><Length Units=\"hundredths-inches\">930</Length><Weight
|
500
|
-
Units=\"hundredths-pounds\">130</Weight><Width Units=\"hundredths-inches\">740</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2010-01-06</PublicationDate><Publisher>Apress</Publisher><ReleaseDate>2010-01-06</ReleaseDate><SKU>mon0000019426</SKU><Studio>Apress</Studio><Title>Learn
|
501
|
-
Xcode Tools for Mac OS X and iPhone Development (Learn Series)</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>198</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.98</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>137</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.37</FormattedPrice></LowestUsedPrice><TotalNew>54</TotalNew><TotalUsed>46</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
|
502
|
-
Description</Source><Content>This book will give you a thorough grounding in
|
503
|
-
the principal and supporting tools and technologies</Content></EditorialReview></EditorialReviews></Item><Item><ASIN>0321566157</ASIN><DetailPageURL>http://www.amazon.com/Programming-Objective-C-2-0-Stephen-Kochan/dp/0321566157%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0321566157</DetailPageURL><ItemLinks><ItemLink><Description>Technical
|
504
|
-
Details</Description><URL>http://www.amazon.com/Programming-Objective-C-2-0-Stephen-Kochan/dp/tech-data/0321566157%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321566157</URL></ItemLink><ItemLink><Description>Add
|
505
|
-
To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0321566157%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321566157</URL></ItemLink><ItemLink><Description>Add
|
506
|
-
To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0321566157%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321566157</URL></ItemLink><ItemLink><Description>Add
|
507
|
-
To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0321566157%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321566157</URL></ItemLink><ItemLink><Description>Tell
|
508
|
-
A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0321566157%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321566157</URL></ItemLink><ItemLink><Description>All
|
509
|
-
Customer Reviews</Description><URL>http://www.amazon.com/review/product/0321566157%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321566157</URL></ItemLink><ItemLink><Description>All
|
510
|
-
Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0321566157%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321566157</URL></ItemLink></ItemLinks><SalesRank>129751</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/41M2GuGl44L._SL75_.jpg</URL><Height
|
511
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">58</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41M2GuGl44L._SL160_.jpg</URL><Height
|
512
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">125</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41M2GuGl44L._SL500_.jpg</URL><Height
|
513
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">390</Width></LargeImage><ImageSets><ImageSet
|
514
|
-
Category=\"primary\"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41M2GuGl44L._SL30_.jpg</URL><Height
|
515
|
-
Units=\"pixels\">30</Height><Width Units=\"pixels\">23</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41M2GuGl44L._SL75_.jpg</URL><Height
|
516
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">58</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41M2GuGl44L._SL75_.jpg</URL><Height
|
517
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">58</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41M2GuGl44L._SL110_.jpg</URL><Height
|
518
|
-
Units=\"pixels\">110</Height><Width Units=\"pixels\">86</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41M2GuGl44L._SL160_.jpg</URL><Height
|
519
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">125</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41M2GuGl44L._SL500_.jpg</URL><Height
|
520
|
-
Units=\"pixels\">500</Height><Width Units=\"pixels\">390</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Stephen
|
521
|
-
G. Kochan</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.117</DeweyDecimalNumber><EAN>9780321566157</EAN><EANList><EANListElement>9780321566157</EANListElement></EANList><Edition>2</Edition><ISBN>0321566157</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><ItemDimensions><Height
|
522
|
-
Units=\"centimeters\">224</Height><Weight Units=\"hundredths-pounds\">203</Weight><Width
|
523
|
-
Units=\"centimeters\">175.5</Width></ItemDimensions><Label>Addison-Wesley Professional</Label><ListPrice><Amount>4499</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$44.99</FormattedPrice></ListPrice><Manufacturer>Addison-Wesley
|
524
|
-
Professional</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>624</NumberOfPages><PackageDimensions><Height
|
525
|
-
Units=\"hundredths-inches\">140</Height><Length Units=\"hundredths-inches\">890</Length><Weight
|
526
|
-
Units=\"hundredths-pounds\">210</Weight><Width Units=\"hundredths-inches\">690</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2009-01-08</PublicationDate><Publisher>Addison-Wesley
|
527
|
-
Professional</Publisher><SKU>ACOUK_book_usedlikenew_0321566157</SKU><Studio>Addison-Wesley
|
528
|
-
Professional</Studio><Title>Programming in Objective-C 2.0 (2nd Edition)</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>2873</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$28.73</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>430</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.30</FormattedPrice></LowestUsedPrice><TotalNew>11</TotalNew><TotalUsed>55</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
|
529
|
-
Description</Source><Content><P style=\"MARGIN: 0px\"></P> <P
|
530
|
-
style=\"MARGIN: 0px\"><B>THE #1 BESTSELLING BOOK ON OBJECTIVE-C 2.0<BR></B></P>
|
531
|
-
\ <P style=\"MARGIN: 0px\"><B><BR></B></P> <P
|
532
|
-
style=\"MARGIN: 0px\"><I>Programming in Objective-C 2.0</I> provides
|
533
|
-
the new programmer a complete, step-by-step introduction to Objective-C, the
|
534
|
-
primary language used to develop applications for the iPhone, iPad, and Mac
|
535
|
-
OS X platforms.</P> <P style=\"MARGIN: 0px\"> </P> <P
|
536
|
-
style=\"MARGIN: 0px\">The book does not assume previous experience with either
|
537
|
-
C or object-oriented programming languages, and it includes many detailed, practical
|
538
|
-
examples of how to put Objective-C to use in your everyday iPhone/iPad or Mac
|
539
|
-
OS X programming tasks.</P> <P style=\"MARGIN: 0px\"><BR></P>
|
540
|
-
\ <P style=\"MARGIN: 0px\">A powerful yet simple object-oriented programming
|
541
|
-
language that&rsquo;s based on the C programming language, Objective-C is
|
542
|
-
widely available not only on OS X and the iPhone/iPad platform but across many
|
543
|
-
operating systems that support the gcc compiler, including Linux, Unix, and
|
544
|
-
Windows systems.</P> <P style=\"MARGIN: 0px\"> </P> <P
|
545
|
-
style=\"MARGIN: 0px\">The second edition of this book thoroughly covers the
|
546
|
-
latest version of the language, Objective-C 2.0. And it shows not only how to
|
547
|
-
take advantage of the Foundation framework&rsquo;s rich built-in library
|
548
|
-
of classes but also how to use the iPhone SDK to develop programs designed for
|
549
|
-
the iPhone/iPad platform.</P> <P style=\"MARGIN: 0px\"> </P>
|
550
|
-
\ <P style=\"MARGIN: 0px\"><B><U>Table of Contents</U></B></P>
|
551
|
-
\ <P style=\"MARGIN: 0px\"><B><BR></B></P> <P
|
552
|
-
style=\"MARGIN: 0px\"> 1 Introduction <BR></P> <P style=\"MARGIN:
|
553
|
-
0px\"><B>Part I: The Objective-C 2.0 Language</B></P> <P
|
554
|
-
style=\"MARGIN: 0px\"> 2 Programming in Objective-C </P> <P
|
555
|
-
style=\"MARGIN: 0px\"> 3 Classes, Objects, and Methods <BR></P>
|
556
|
-
\ <P style=\"MARGIN: 0px\"> 4 Data Types and Expressions<BR></P>
|
557
|
-
\ <P style=\"MARGIN: 0px\"> 5 Program Looping<BR></P>
|
558
|
-
\ <P style=\"MARGIN: 0px\"> 6 Making Decisions<BR></P>
|
559
|
-
\ <P style=\"MARGIN: 0px\"> 7 More on Classes</P> <P style=\"MARGIN:
|
560
|
-
0px\"> 8 Inheritance<BR></P> <P style=\"MARGIN: 0px\">
|
561
|
-
\ 9 Polymorphism, Dynamic Typing, and Dynamic Binding<BR></P>
|
562
|
-
\ <P style=\"MARGIN: 0px\"> 10 More on Variables and Data Types<BR></P>
|
563
|
-
\ <P style=\"MARGIN: 0px\"> 11 Categories and Protocols<BR></P>
|
564
|
-
\ <P style=\"MARGIN: 0px\"> 12 The Preprocessor<BR></P>
|
565
|
-
\ <P style=\"MARGIN: 0px\"> 13 Underlying C Language Features<BR></P>
|
566
|
-
\ <P style=\"MARGIN: 0px\"><B>Part II: The Foundation Framework</B></P>
|
567
|
-
\ <P style=\"MARGIN: 0px\"> 14 Introduction to the Foundation Framework
|
568
|
-
<BR></P> <P style=\"MARGIN: 0px\"> 15 Numbers, Strings,
|
569
|
-
and Collections <BR></P> <P style=\"MARGIN: 0px\"> 16 Working
|
570
|
-
with Files <BR></P> <P style=\"MARGIN: 0px\"> 17 Memory
|
571
|
-
Management <BR></P> <P style=\"MARGIN: 0px\"> 18 Copying
|
572
|
-
Objects <BR></P> <P style=\"MARGIN: 0px\"> 19 Archiving
|
573
|
-
<BR></P> <P style=\"MARGIN: 0px\"><B>Part <B>III:
|
574
|
-
Cocoa and the iPhone SDK</B></B></P> <P style=\"MARGIN:
|
575
|
-
0px\"> 20 Introduction to Cocoa </P> <P style=\"MARGIN: 0px\">
|
576
|
-
\ 21 Writing iPhone Applications <BR></P> <P style=\"MARGIN:
|
577
|
-
0px\"><B>Part IV: Appendixes</B></P> <P style=\"MARGIN:
|
578
|
-
0px\"> A Glossary <BR></P> <P style=\"MARGIN: 0px\">
|
579
|
-
\ B Objective-C 2.0 Language Summary <BR></P> <P style=\"MARGIN:
|
580
|
-
0px\"> C Address Book Source Code<BR></P> D Resources<BR><BR><BR></Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews></Item><Item><ASIN>1934356514</ASIN><DetailPageURL>http://www.amazon.com/Beginning-Mac-Programming-Objective-C-Programmers/dp/1934356514%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1934356514</DetailPageURL><ItemLinks><ItemLink><Description>Technical
|
581
|
-
Details</Description><URL>http://www.amazon.com/Beginning-Mac-Programming-Objective-C-Programmers/dp/tech-data/1934356514%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356514</URL></ItemLink><ItemLink><Description>Add
|
582
|
-
To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1934356514%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356514</URL></ItemLink><ItemLink><Description>Add
|
583
|
-
To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1934356514%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356514</URL></ItemLink><ItemLink><Description>Add
|
584
|
-
To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1934356514%26SubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356514</URL></ItemLink><ItemLink><Description>Tell
|
585
|
-
A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/1934356514%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356514</URL></ItemLink><ItemLink><Description>All
|
586
|
-
Customer Reviews</Description><URL>http://www.amazon.com/review/product/1934356514%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356514</URL></ItemLink><ItemLink><Description>All
|
587
|
-
Offers</Description><URL>http://www.amazon.com/gp/offer-listing/1934356514%3FSubscriptionId%3DAKIAJFA5X7RTOKFNPVZQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356514</URL></ItemLink></ItemLinks><SalesRank>303495</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/414Skg0O6yL._SL75_.jpg</URL><Height
|
588
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/414Skg0O6yL._SL160_.jpg</URL><Height
|
589
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">131</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/414Skg0O6yL._SL500_.jpg</URL><Height
|
590
|
-
Units=\"pixels\">416</Height><Width Units=\"pixels\">340</Width></LargeImage><ImageSets><ImageSet
|
591
|
-
Category=\"primary\"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/414Skg0O6yL._SL30_.jpg</URL><Height
|
592
|
-
Units=\"pixels\">30</Height><Width Units=\"pixels\">25</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/414Skg0O6yL._SL75_.jpg</URL><Height
|
593
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/414Skg0O6yL._SL75_.jpg</URL><Height
|
594
|
-
Units=\"pixels\">75</Height><Width Units=\"pixels\">61</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/414Skg0O6yL._SL110_.jpg</URL><Height
|
595
|
-
Units=\"pixels\">110</Height><Width Units=\"pixels\">90</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/414Skg0O6yL._SL160_.jpg</URL><Height
|
596
|
-
Units=\"pixels\">160</Height><Width Units=\"pixels\">131</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/414Skg0O6yL._SL500_.jpg</URL><Height
|
597
|
-
Units=\"pixels\">416</Height><Width Units=\"pixels\">340</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Tim
|
598
|
-
Isted</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.268</DeweyDecimalNumber><EAN>9781934356517</EAN><EANList><EANListElement>9781934356517</EANListElement></EANList><Edition>1</Edition><ISBN>1934356514</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><ItemDimensions><Height
|
599
|
-
Units=\"hundredths-inches\">890</Height><Length Units=\"hundredths-inches\">748</Length><Weight
|
600
|
-
Units=\"hundredths-pounds\">143</Weight><Width Units=\"hundredths-inches\">83</Width></ItemDimensions><Label>Pragmatic
|
601
|
-
Bookshelf</Label><ListPrice><Amount>3495</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$34.95</FormattedPrice></ListPrice><Manufacturer>Pragmatic
|
602
|
-
Bookshelf</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>352</NumberOfPages><PackageDimensions><Height
|
603
|
-
Units=\"hundredths-inches\">87</Height><Length Units=\"hundredths-inches\">906</Length><Weight
|
604
|
-
Units=\"hundredths-pounds\">146</Weight><Width Units=\"hundredths-inches\">772</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2010-04-02</PublicationDate><Publisher>Pragmatic
|
605
|
-
Bookshelf</Publisher><SKU>ACOM-INT_book_new_1934356514</SKU><Studio>Pragmatic
|
606
|
-
Bookshelf</Studio><Title>Beginning Mac Programming: Develop with Objective-C
|
607
|
-
and Cocoa (Pragmatic Programmers)</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>6500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$65.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1673</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.73</FormattedPrice></LowestUsedPrice><TotalNew>8</TotalNew><TotalUsed>21</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
|
608
|
-
Description</Source><Content><DIV><p><i>Beginning Mac Programming</i>
|
609
|
-
takes you through concrete, working examples, giving you the core concepts and
|
610
|
-
principles of development in context so you will be ready to build the applications
|
611
|
-
you've been imagining. It introduces you to Objective-C and the Cocoa framework
|
612
|
-
in clear, easy-to-understand lessons, and demonstrates how you can use them
|
613
|
-
together to write for the Mac, as well as the iPhone and iPod.</p><p>
|
614
|
-
You'll explore crucial developer tools like Xcode and Interface Builder, and
|
615
|
-
learn the principles of object-oriented programming, and how memory, data, and
|
616
|
-
storage work to help you build your software.</p><p> If you've ever
|
617
|
-
wanted to develop software for the Mac, this book is for you.</p></div></Content></EditorialReview></EditorialReviews></Item></Items></SimilarityLookupResponse>"
|
618
|
-
http_version: '1.1'
|