Search

Learn Objective-C for Java Developers (Learn Series)

Great Price "Learn Objective-C for Java Developers (Learn Series)" for $11.86 Today



I've been programming with Java since 1998. It's a nice language/platform with automatic garbage collection and a rich set of 3rd party APIs and libraries. However, the introduction of iPhone changed the world, and I wanted to develop some apps for iPhone. Since iPhone does not support Java as their development language, I had to learn Objective-C. Even though I learned some C/C++ back from college days, Objective-C is still quite foreign to me. It's a bit frustrating to Google and searching through Apple's documentation to find something equivalent (that works in Java) to be used in Objective-C. After many fruitless searches and frustration, I thought I might never learn Objective-C. Then this book was released and I grabbed a copy. After reading it, I truly wish this book was available earlier so I didn't waste so much time searching blindly in Google.

James did a wonderful job bring Java and Objective-C comparison side by side. But keep in mind, no single book can cover EVERYTHING between Java and Objective-C. There are obviously certain things missing but for the most part, it covers many grounds between Java and Objective-C.

Part 1 - Language
Chapeter 1-7 give you some nice introduction to Objective-C, and along the way, comparing with Java, and gradually feeds you more and more Objective-C features. Chapter 5 on Protocols and Categories is very nice, but I wish it was much longer. Protocols and Categories are very powerful features in Objective-C. They alone deserve a whole book ;)

Part 2 - Translating Technologies
Chapter 8-15 touches on many fundamentals of both languages, Strings and primitive values, Garbage Collection, Introspection, Files, Serialization, Exception Handling and Threads. The author shows us side-by-side code snippets comparison between Java and Objective-C. This alone is invaluable to us readers. There are some mind-bending situations where you will say: why it's so different? and makes you feel confused and puzzled. Then if you read up Apple's official documentation, and explore the APIs further, you will realize why things are in certain way in Objective-C. Definitely lots of learning there.

Part 3 - Programming Patterns
Chapter 16-23 shows the readers some common programming and design patterns in both language flavors. Collection pattern, Delegation pattern (lots of Objective-C APIs are through the use of delegation), Provider/Subscriber pattern, Observer Pattern(you will find how easy it is to setup observers in your program), MVC, Lazy Initialization, Factory, and our favorite Singleton pattern.
Of course, there are many more patterns that are not covered here, but these basic patterns are enough to get you started. Again, patterns alone warrants a whole 900-page book, so hopefully something comes out soon.

Part 4 - Advanced Objective-C
Chapter 24-26 deals with memory management, mixing c and objective-c, and runtime.
Memory management is especially important in iPhone SDK since so far iPhone SDK does not support automatic garbage collection. So all the memory allocations you have in the codes must be taken care of. Mixing C and Objective-C is very interesting, it should be very helpful for gaming development, where in many cases, involves game engines written in C.

Overall, it's a solid book for Java developers who want to dive into Objective-C.
You might need to read it a few times to fully understand certain topics.
It's a good reference book as well if you want to look up something quick in Objective-C but you only know how to do that in Java.

Learn Objective-C for Java Developers (Learn Series) Features

  • ISBN13: 9781430223696
  • Condition: NEW
  • Notes: Brand New from Publisher. No Remainder Mark.



Rating :
Price : $39.99
Offer Price : $11.86



Learn Objective-C for Java Developers (Learn Series) Overviews

Learn Objective-C for Java Developers will guide experienced Java developers into the world of Objective-C. It will show them how to take their existing language knowledge and design patterns and transfer that experience to Objective-C and the Cocoa runtime library. This is the express train to productivity for every Java developer who dreamt of developing for Mac OS X or iPhone, but felt that Objective-C was too intimidating. So hop on and enjoy the ride!

  • Provides a translation service that turns Java problem-solving skills into Objective-C solutions
  • Allows Java developers to leverage their existing experience and quickly launch themselves into a new domain
  • Takes the risk out of learning Objective-C

What you'll learn

  • Apply Java experience to Objective-C and Cocoa
  • Use elegant alternatives that increase productivity
  • Maximize the powerfully unique constructs of Objective-C, like class clusters
  • Think like an object-oriented C programmer to create more reusable code
  • Use all of the things in Java and Objective-C that are actually quite similar, like MVC design patterns
  • Learn how to do all of it within Apple's powerful Xcode programming environment using Cocoa frameworks

Who is this book for?

Experienced Java developers interested in developing native applications for Apple's Mac OS X operating system, iPhone, and iPod touch.

Affordable Price at Store Check Price Now!



Customer Review


I needed this book a year ago, but am thrilled it is finally here - Matthew McCullough - Highlands Ranch, CO, USA
Being a Java developer for more than 10 years and having explored the Objective-C platform for iPhone development for more than the last year, I struggled in the early days. I longed for a document that spoke to me, the Java emigre, and helped me map my existing knowledge into this new field of development. Finally, such a book has hit the shelves in the form of James Bucanek's Learn Objective-C for Java Developers.

James warns us that direct comparisons between these languages are insufficient, but acknowledges it gives us a great common vocabulary to start with. Once the comparisons have been drawn and as we become comfortable on the Objective-C language, James takes us beyond Obj-C as Java and shows the dynamism of this unique platform. We progress through memory management, persistence, and other platform specific critical technologies, learning each from James in a very friendly tutorial-style manner.

The book ends in a fevered pitch with an overview of mixing C and Obj-C. Overall, I was very pleased with the book, primarily because it spoke to me as a Java developer, and second because the writing style was very digestible. I highly recommend this book to any Java developer moving to the iPhone platform.




Related to Items You've Viewed




*** Product Information and Prices Stored: Apr 30, 2010 11:51:11


Related : All About Flip Flop Sandals All About Opal Rings and Earrings Best Deals And Reviews On Cheese Grater Container Best Deals & Reviews On Ray Ban Prescription Sunglasses Best Deals And Reviews On Runner GPS Watch

Read more

Programming with Quartz: 2D and PDF Graphics in Mac OS X (The Morgan Kaufmann Series in Computer Graphics)

Great Price Programming with Quartz: 2D and PDF Graphics in Mac OS X (The Morgan Kaufmann Series in Computer Graphics) for $44.52 Today




Quartz 2D is the primary graphics library in Mac OS X and is based on version 1.4 of Adobe PDF. It supercedes QuickDraw, which was used in earlier versions of the Mac OS. In Quartz 2D the coordinate space is an abstract concept defined by real values in 2 dimensions. Points in this space can be connected to form paths, such as straight lines, Bezier curves and so on. To create actual graphics on the display, the paths are rasterized as needed to generate the pixels at the display device's resolution. This permits the same graphics commands to yield the same output on any device using the best resolution available.
This book is full of clear explanations for mere mortals of how Quartz has packaged the state of the art in graphics programming. The book starts out with Quartz 2D drawing basics such as drawing and filling basic geometric forms and drawing lines. With the basics out of the way, the author goes on to show how you would use Quartz 2D both in Cocoa and in Carbon. Next there are chapters on basic computer graphics intertwined with performing these tasks in Quartz. Included topics are coordinate systems, affine transformations, and parametric curves all within the framework of performing graphics in Quartz. The book then moves on to working with images including creating CGImage objects, and importing and exporting data to PNG, JPEG, and Quicktime formats. Another chapter is devoted to working with text. There are two chapters devoted to working with PDF data, including a chapter on handling PDF images that is very thorough in its descriptions and the issues that are raised. The book is very well written and covers many complex topics in 2D graphics clearly and at a level appropriate for all programmers, and I highly recommend it for all programmers interested in Quartz.

Programming with Quartz: 2D and PDF Graphics in Mac OS X (The Morgan Kaufmann Series in Computer Graphics) Features

  • ISBN13: 9780123694737
  • Condition: USED - VERY GOOD
  • Notes:



Rating :

Price : $86.95

Offer Price : $44.52




Overviews

Written by members of the development team at Apple, Programming with Quartz is the first book to describe the sophisticated graphics system of Mac OS X. By using the methods described in this book, developers will be able to fully exploit the state-of-the-art graphics capabilities of Mac OS X in their applications, whether for Cocoa or Carbon development. This book also serves as an introduction to 2D graphics concepts, including how images are drawn and how color is rendered. It includes guidance for working with PDF documents, drawing bitmap graphics, using Quartz built-in color management, and drawing text. Programming with Quartz is a rich resource for new and experienced Mac OS X developers, Cocoa and Carbon programmers, UNIX developers who are migrating to Mac OS X, and anyone interested in powerful 2D graphics systems.

* This is the definitive guide to the revolutionary graphics system of Mac OS X that uses the Portable Document Format (PDF) as the basis of its imaging model.
* It contains the latest on programming with Quartz for Mac OS X version 10.4.
* Carefully crafted and extensive code examples show how to accomplish most of the drawing tasks possible with Quartz.

Affordable Price at Store Check Price Now!



Customer Review


Resist the urge to dismiss - orangekay - San Francisco, CA United States
I've known about this book for a while now, but I've never bothered paying attention to it given it's somewhat ridiculous price tag. Necessity forced me to forgo my earlier conclusions however, and I'm now angry at myself for not picking it up sooner. However much you think you know about Quartz, there's always more to learn, and this book is a whole lot easier to pick new tricks up from than Apple's scant free documentation. It's a bit dated when it comes to the XCode specific info, but unless you're a total newcomer you should be able to fill in the proverbial gaps there without much trouble.

This is the second book on OS X programming that I have felt is truly worth owning; the first being Amit Singh's "Mac OS X Internals." This one's not as thick, nor is it hardbound, but there are lots of color plates. Good stuff.


Excellent Book - T. Cunningham - HI USA
If all of the Apple frameworks were explained as well as CoreGraphics/Quartz is in this book, life would be so much better for independent programmers. I am not writing code in XCode, but one where I need to port calls to custom classes. This book has helped me so much. I have not located the link on the publisher's site (maybe I'm just missing it), but my only complaint (a very minor one) would be that they don't have a contact email for the authors to report errata or thank them.

Well written, to the point, good code examples and does not duplicate the Apple documents. Covers Carbon and Cocoa calls. The chapters on axial and radial shadings were the most helpful for me.




*** Product Information and Prices Stored: Apr 29, 2010 11:10:15


Visit : BUY "GPS Watches" NOW!! BUY "Kangol Hats" With Affordable Price NOW!! Buy "iPad, iPhone and iPod Touch Programming" Book Best Deals, Reviews On Children Bicycle Trailer Best Deals And Reviews On Bar Stools and More Cheap Price & Reviews On Single Variable Calculus Stewart

Read more

iPhone Programming: The Big Nerd Ranch Guide (Big Nerd Ranch Guides)

iPhone Programming: The Big Nerd Ranch Guide (Big Nerd Ranch Guides) Review




I marvel at the writers' abilities to take a complicated subject area and parse it in a manner which benefits both beginning and advanced programmers. I've gotten most of the other popular iPhone development books and found that they made minimal effort to predict readers' questions. It's like a plate of bad food from a deaf chef. This book, on the other hand, goes completely in the other direction and answers the questions that pop up into my head and, more importantly, they kick in a little challenge along the way that rivals an in-person classroom experience. I've also read their Mac OS X titles, and they have clearly improved their editing. This book is professional and the best there is out there. Just because the App Store is getting close to having a gazillion titles doesn't mean that writing iPhone apps is easy. If you want to write something which peaks above the baseline of uselessness and silliness, then this book is the only way to go. Bravo! Where's the sequel already :-) ?



Rating :

Price : $49.99

Offer Price : $30.74




Overviews

Written by the trainers at the Big Nerd Ranch, the worldwide leader in professional training for Mac developers, this book provides a hands-on guide to learning how to program for the iPhone and iPod touch. Coverage includes

  • An overview of Objective-C, the core language you’ll use to program for the iPhone
  • An overview of the Xcode Tools
  • How to work with the iPhone SDK’s UIKit framework and Cocoa Touch
  • Build apps that use MapKit and CoreLocation, as well as the magnetometer
  • Dive into animation and effects, using Core Animation and OpenGL ES

Affordable Price at Store Check Price Now!



Customer Review


Top of the Heap - Joshua Paul - Los Angeles, CA
If you plan on picking up a book about iPhone programming, you've found the right one.

I have a *ton* of iPhone books (and programming books, in general), and this sits at the top of the heap. The book is easy to read and understand, and the code provided is reusable (bonus!). It's obvious the material is derived from an experienced team.

Ultimately I've found that I can "trust" the problems/solutions laid out in the book, since it's coming from The Big Nerd Ranch (search for it if you're not familiar).

5+ stars.

My 3 book recommendation for iPhone:
1) iPhone Programming (this book)
2) Programming in Objective-C (Kochan)
3) Cocoa Design Patterns (Buck, Yacktman)





*** Product Information and Prices Stored: Apr 28, 2010 11:06:06


Friends Link : All About Flip Flop Sandals Best Objective-C Programming Textbooks Best iPhone SDK Textbooks Best Deals And Reviews On Fat Baby Shoes Cheap Price & Reviews On Calculus Textbook Solutions

Read more

iPhone SDK Development (The Pragmatic Programmers)

iPhone SDK Development (The Pragmatic Programmers) Review




Walk down a city street, and in a short time, you'll most likely bump into someone who holds an iPhone. This device, which was formally introduced by Steve Jobs in January of 2007, has become one of the most coveted and loved handheld gadgets today. In fact, with the hardware on its third iteration and with its OS at version 3.0, it seems unimaginable to think what the world would be without it.

Without a doubt, one of the reasons for the iPhone's major success can be attributed to the involvement and support of thousands of third party software developers who create applications which run on the iPhone. These independent developers primarily serve to augment in a major way what is essentially Apple's limited number of built-in apps. There are now over hundreds of thousands of third party apps designed for the iPhone which has been downloaded billions of times.

While this number appears staggering, there seems to be no sign that the community of third party developers is slowing down. After all, as we know now, with the success of a number of iPhone apps, creating a small piece of software for the iPhone can result to a not-so-small fortune. And if you think that there's no more room for another app, think again. Once in a while, there comes out of nowhere a new app that is so unique and so amazing that iPhone users simply cannot resist downloading. And so, while Apple likes to advertise that "there's an app for that," there is definitely still room for newer and better iPhone apps.

If you have an idea for an app that you want to use on your iPhone but isn't out there yet, or even if you have a better idea for an app that's already out there, well, there's a software app for that--the iPhone SDK. First thing to do is to sign up with Apple to be one of its iPhone app developers (if you haven't done so yet). And then, pick out the "pragmatic" //iPhone 3.0 SDK Development// book by Bill Dudney and Chris Adamson. This is one big book, but it's not scary. Step-by-step, and at your own speed, you'd be guided through the tools and APIs that you can use to create your own software. Packed with useful examples, this book will give you both the big-picture concepts and the everyday "gotcha" details that developers need in order to make the most of the beauty and power of the iPhone OS platform. And with more than fifty sample programs written for iPhone SDK 3.0, this is one book that goes beyond the basic that will help you succeed in creating an app on today's most important mobile platform, the iPhone.

Reviewed by Dominique James

iPhone SDK Development (The Pragmatic Programmers) Features

  • ISBN13: 9781934356258
  • Condition: NEW
  • Notes: Brand New from Publisher. No Remainder Mark.



Rating :

Price : $38.95

Offer Price : $21.69




Overviews

Packing the power of desktop applications into a small mobile device, the iPhone SDK offers developers the ability to create dynamic, visually-appealing, and highly-capable mobile applications, using the same APIs and tools that Apple uses for its own applications.

However, harnessing that power means learning new tools, new APIs, and even a whole new programming language.

iPhone SDK Development is a Pragmatic guide to get you started developing applications for iPhone and iPod touch. With it, you'll get a complete understanding of the tools and techniques needed to succeed on the platform:

Use the XCode IDE to manage your source code, images, sounds, database files, and other application resources, building your app and deploying it onto your own device for testing.

Develop your user interface the visual, code-free way, with Interface Builder.

Master the iPhone's unique user interface components, including tables, tab bars, navigation bars, and the multi-touch interface.

Connect your iPhone to the outside world with networking, exploit the power of a relational database with SQLite, and rock out with first-class support for audio and video.

Make use of the iPhone's unique mobile APIs, like geolocation and the motion-sensing accelerometer

Use XCode's powerful performance and debugging tools to eliminate memory leaks, zombies, and other hazards.

* Understand the process for packaging your application for end-user distribution through Apple's App Store.

With explanations of the big picture and an eye to the little details that you'll need, iPhone SDK Development will help you succeed on today's most important mobile platform.

Affordable Price at Store Check Price Now!



Customer Review


Excellent book for beginners - RoryM - Chicago, IL USA
Wanted to develop an iPhone application, but had never done any iPhone or even Mac programming before. Excellent step-by-step instructions and detailed examples. Well tested sample code and examples that were surprisingly deep and useful. Can't say enough about how good this book really is. Took me from being a rookie to someone who can now effectively develop - and have enough background to use the Apple reference material to get to the next level.


Good introductory book - Amol Kher - Austin, Texas USA
As a completely new Mac programmer, this book was very easy and helped me gently ease into the topics with ample examples and logical flow.

I recommend it to anyone who wants to write an iPhone app.




*** Product Information and Prices Stored: Apr 27, 2010 10:40:09


Recommend : BUY "Flip Flop Sandals" With Affordable Price NOW! Best Deals & Reviews On Insulated Picnic Backpack Cheap Price & Reviews On Calculus Textbook Reviews Cheap Price & Reviews On Calculus Stewart 5th Edition

Read more

iPhone Advanced Projects

iPhone Advanced Projects Review




As the name suggested, this book talks about advanced iPhone programming topics. Each of the 11 chapters packs loads of information and real world experience from the authors. You will actually spend more time to digest the information than just reading it. Highly recommended to experienced and seasoned iPhone developers, but also offers quite some insights for developers new to the iPhone scene. You will be amazed on how much you can learn from the authors of the book. And lots of code samples throughout the book, you won't be disappointed.

Chapter 1 - Great introduction to the particle system, the very basic element for many types of games.
Chapter 2 - Interesting coverage on how to build a networked app/game, with the help of Google's free App Engine service using Python.
Chapter 3 - Using Core Audio to do audio streaming. This chapter is quite hardcore for me, but I was able to follow through and learned quite a lot about how audio streaming works and some tricks as well.
Chapter 4 - This chapter is right on the money - debugging! The author showed a few different approaches when debugging your iPhone apps.
Chapter 5 - This chapter covers basic SQLite operations in your codes. Currently there's no Objective-C delegate/wrappers for SQLite operations, so everything is in C fashion. There are other frameworks for a better interface with SQLite.
Chapter 6 - If you don't like dealing with SQLite, with the introduction of iPhone SDK 3.0, you can use Core Data :) This chapter shows you how Core Data and KVC protocol works.
Chapter 7 - How to send emails from your apps w/o going to the email client. The author shows both online and offline modes, as well as a nice introduction to three20 framework.
Chapter 8 - This chapter talks about networking issues, sockets, wifi detection, power management, etc. Also some insights if you want to roll out your own networking protocol stacks.
Chapter 9 - This is my favorite chapter talking about how to design an effective and responsive user interface. NSOperation and NSOperationQueue are covered, as well as tips & tricks on how to display large amount of data w/o slowing down.
Chapter 10 - Very nice introduction to Apple's push notification service, including both setup steps and server side scripts.
Chapter 11 - Mapping and Reflection on OpenGL ES. This is a brief introduction to OpenGL ES environment mapping and reflection. I wish this chapter is longer and has more coverage in depth. But again, this is not an OpenGL ES book, the topic itself deserves a whole other book.

Overall, this book is pretty advanced in many aspects of the iPhone SDK frameworks. Coverage on SDK 3.0 frameworks are much welcomed and the competence of the authors are undeniable. Again, I highly recommend this book to any iPhone developer, no matter how seasoned you are, you will learn a thing or two from this book.

iPhone Advanced Projects Features

  • ISBN13: 9781430224037
  • Condition: NEW
  • Notes: Brand New from Publisher. No Remainder Mark.



Rating :

Price : $39.99

Offer Price : $13.50




Overviews

As the fourth book in our series of iPhone Projects based on the work and experiences of iPhone, this volume takes on the more advanced aspects of iPhone development. The first generation of iPhone applications has hit the App Store, and now it's time to optimize performance, streamline the user interface, and make every successful iPhone app just that much more sophisticated.

Paired with Apress's bestselling Beginning iPhone Development: Exploring the iPhone SDK, you'll have everything you need to create the next great iPhone app that everyone is talking about.

  • Optimize performance.
  • Streamline your user interface.
  • Do things with your iPhone app that other developers haven't attempted.

Along with Series Editor Dave Mark, your guides for this exploration of the next level of iPhone development, include:

  • Ben “Panda” Smith, discussing particle systems using OpenGL ES
  • Joachim Bondo , demonstrating his implementation of correspondence gaming in the most recent version of his chess application, Deep Green.
  • Tom Harrington implementing streaming audio with Core Audio, one of many iPhone OS 3 APIs.
  • Owen Goss debugging those pesky errors in your iPhone code with an eye toward achieving professional-strength results.
  • Dylan Bruzenak building a data-driven application with SQLite.
  • Ray Kiddy illustrating the full application development life cycle with Core Data.
  • Steve Finkelstein marrying an offline eMail client to Core Data.
  • Peter Honeder and Florian Pflug tackling the challenges of networked applications in WiFi environments.
  • Jonathan Saggau improving interface responsiveness with some of his personal tips and tricks, including “blocks” and other esoteric techniques.
  • Joe Pezzillo pushing the frontiers of APNS, the new in iPhone OS 3 Apple Push Notification Service that makes the Cloud the limit for iPhone apps.
  • Noel Llopis taking mere programmers into a really advanced developmental adventure into the world of Environment Mapping with OpenGL ES.

What you'll learn

  • Use wi-fi to do more than simply connect to the Internet.
  • Communicate with other iPhone users in real time.
  • Take advantage of all the tricks built into Cocoa Touch.
  • Convert your iPhone and iPod touch apps for use in other environments.
  • Convert your other mobile apps for use with iPhone and iPod touch.

Who is this book for?

All iPhone application developers with any level of experience or coming from any development platform, though this title is the natural choice after any of the other iPhone X Projects books.

Affordable Price at Store Check Price Now!



Customer Review


Too Many Mistakes to be Useful - Clifford Sharp - Longmont, CO
I DO NOT recommend this book at all for any level of iPhone developer(s).

One of the projects actually just takes an Apple code example and adds a few methods here and there. I don't have to buy a book to do that. One project adds some methods and ivar's to files that are generated files per Core Data. This is always a bad idea.

There are many mistakes in the source code in the book. The source code in the book doesn't match the downloadable source code in many places. The downloadable source code fails to build and is missing files. I found such obvious errors in the downloadable source like no semicolon at the end of some of the lines. This code was obviously never built and/or tested.

This book was very poorly and hastily put together. Don't waste your money, but more importantly, don't waste your time.





*** Product Information and Prices Stored: Apr 26, 2010 08:53:08


Tags : Best iPad Programming Textbooks Best iPad Development Textbooks BUY "Bicycle Trailers" With Affordable Price NOW!! Best Deals, Reviews On Instep Bicycle Trailer Best Deals & Reviews On Black Ray Ban Sunglasses

Read more

The iPhone Developer's Cookbook: Building Applications with the iPhone SDK

The iPhone Developer's Cookbook: Building Applications with the iPhone SDK Review




Every other iphone book out there sticks to teaching the use of Interface Builder everytime you work on the GUI side of you app. That's totally insane.

I bought this book, made it 4 chapters in and thought I wasted my money. I bought another book and a couple months in realized that all I learned was interface builder and how to make the most basic apps possible. I've gone back to this book and realized it was the only one I needed.

Do not waste your time with making interface builder apps unless you are not a programmer or you are just looking to make a simple app over the weekend and probably never publish it.

This book separates the real programmers from the people who pickup an IDE and think they can code because they can drag and drop GUI components.

I would rather not have any books than not have this book. I would recommend buying it with the Learning Objective c book (from the same publisher) if you are new to the language. I find that it is not as simple to pickup as C++, Java or C# because the syntax is sort of odd. The learning objective c book will help with that.

If you are a good programmer, are new to iphone development, are capable of making really good software and want to create complex apps, this is the only book you will need.

If you are not a programmer (either literally or just think you are a programmer but really are not), are new to iphone and have never written software (on your own without using Google to find all your source code), go get one of the other books that teach drag and drop interface building, you will be lost with this book.

The iPhone Developer's Cookbook: Building Applications with the iPhone SDK Features



Rating :

Price : $39.99

Offer Price : $19.00




Overviews

“This book would be a bargain at ten times its price! If you are writing iPhone software, it will save you weeks of development time. Erica has included dozens of crisp and clear examples illustrating essential iPhone development techniques and many others that show special effects going way beyond Apple’s official documentation.”

—Tim Burks, iPhone Software Developer, TootSweet Software

 

“Erica Sadun’s technical expertise lives up to the Addison-Wesley name. The iPhone Developer’s Cookbook is a comprehensive walkthrough of iPhone development that will help anyone out, from beginners to more experienced developers. Code samples and screenshots help punctuate the numerous tips and tricks in this book.”

—Jacqui Cheng, Associate Editor, Ars Technica

 

“We make our living writing this stuff and yet I am humbled by Erica’s command of her subject matter and the way she presents the material: pleasantly informal, then very appropriately detailed technically. This is a going to be the Petzold book for iPhone developers.”

—Daniel Pasco, Lead Developer and CEO, Black Pixel Luminance

 

The iPhone Developer’s Cookbook: Building Applications with the iPhone SDK should be the first resource for the beginning iPhone programmer, and is the best supplemental material to Apple’s own documentation.”

—Alex C. Schaefer, Lead Programmer, ApolloIM, iPhone Application Development Specialist, MeLLmo, Inc

 

“Erica’s book is a truly great resource for Cocoa Touch developers. This book goes far beyond the documentation on Apple’s Web site, and she includes methods that give the developer a deeper understanding of the iPhone OS, by letting them glimpse at what’s going on behind the scenes on this incredible mobile platform.”

—John Zorko, Sr. Software Engineer, Mobile Devices

 

The iPhone and iPod touch aren’t just attracting millions of new users; their breakthrough development platform enables programmers to build tomorrow’s killer applications. If you’re getting started with iPhone programming, this book brings together tested, ready-to-use code for hundreds of the challenges you’re most likely to encounter. Use this fully documented, easy-to-customize code to get productive fast—and focus your time on the specifics of your application, not boilerplate tasks.

 

Leading iPhone developer Erica Sadun begins by exploring the iPhone delivery platform and SDK, helping you set up your development environment, and showing how iPhone applications are constructed. Next, she offers single-task recipes for the full spectrum of iPhone/iPod touch programming jobs:

  • Utilize views and tables
  • Organize interface elements
  • Alert and respond to users
  • Access the Address Book (people), Core Location (places), and Sensors (things)
  • Connect to the Internet and Web services
  • Display media content
  • Create secure Keychain entries
  • And much more

 

You’ll even discover how to use Cover Flow to create gorgeous visual selection experiences that put scrolling lists to shame!

 

This book is organized for fast access: related tasks are grouped together, and you can jump directly to the right solution, even if you don’t know which class or framework to use. All code is based on Apple’s publicly released iPhone SDK, not a beta. No matter what iPhone projects come your way, The iPhone Developer’s Cookbook will be your indispensable companion.

 

Affordable Price at Store Check Price Now!



Customer Review


Definitely NOT helpful for new iPhone developers. - software developer -
This book is very frustrating, and an immense disappointment. Despite my 40 years of software development on other platforms, this book is woefully inadequate at helping someone new to iPhone development. Unclear documentation, poorly laid out source code (Ms. Sadun admits that it's done this way for ease of book publishing, not for the user of the book). Downloading the code itself is an exercise in frustration, requiring that you set up other tools (without any documentation) just to be able to download. If you bother to compile the examples, every one has the same name, so you are left with a mess to separate and cleanup, both on your mac and on the iPhone. The author gives you a website if you have any questions, but totally fails to answer a single question or provide any help whatsoever.

Perhaps if you are already a very experienced iPhone developer you can gain some useful kernels of wisdom from this book, but otherwise it's useless. Stay away!





*** Product Information and Prices Stored: Apr 25, 2010 07:15:08


My Links : BUY "GPS Watches" NOW!! Best Deals And Reviews On Cheese Graters Electric Cheap Price & Reviews On Calculus Early Transcendentals Solutions

Read more

iPhone for Programmers: An App-Driven Approach (Deitel Developer Series)

iPhone for Programmers: An App-Driven Approach (Deitel Developer Series) Review




In the process of learning a new computer language or software development environment, I have found that multiple books are needed, each with a different focus: a good intro book with simple examples (Beginning iPhone 3 Development), a great language reference book (Programming in Objective-C), and a first-class advanced applications/topics book. This book, iPhone for Programmers: An App-Driven Approach, is the first-class advanced applications/topics book in my set.

Chapter 2 describes the process that follows the design step for an app: testing the app on an iPhone/Touch device, preparation for submission, pricing, managing, and marketing your newly created app. Chapter 2 lists common characteristics of great iPhone/Touch apps. Some of the reasons that may cause an app to be rejected by Apple are also described. Chapter 2 is a much appreciated chapter and a rare topic for an application programming book.

For the next fourteen chapters, example apps are provided; one per chapter. The apps look good enough to be listed on the app store. Each of the chapters follows a consistent organizational structure: Introduction, Test-driving the App, Overview of the Technologies, Building the App, and Wrap-up.

On the page just before the Table of Contents is a listing of the topics available at the resource center on the authors' website. The resource center is an extensive collection of well-organized current information about computer languages, internet business, open source, programming, and web2.0. This is definitely not your typical book-support website.

Although I am still working my way through the last few chapters, I am pleased with the depth of technical material and the variety of real application examples. After learning the basics, nothing beats further learning than developing, compiling and debugging your own code to create your own software application. It is also the most humbling part of the learning process. Dare to dream...

iPhone for Programmers: An App-Driven Approach (Deitel Developer Series) Features

  • ISBN13: 9780137058426
  • Condition: NEW
  • Notes: Brand New from Publisher. No Remainder Mark.



Rating :

Price : $39.99

Offer Price : $22.38




Overviews

The professional programmer’s DEITEL® guide to iPhone app development using iPhone SDK 3.x, Xcode®, Objective-C® and Cocoa®

More than 1.5 billion iPhone apps were downloaded from Apple’s App Store in just one year! This book gives you everything you’ll need to start developing great iPhone apps quickly and–once you’ve joined Apple’s fee-based iPhone Developer Program–to get them up and running on the App Store. The book uses an app-driven approach–each new technology is discussed in the context of 14 fully tested iPhone apps (7700 lines of code), complete with syntax shading, code walkthroughs and sample outputs. Apps you’ll develop include:

  • Welcome
  • Spot-On Game
  • Route Tracker
  • Tip Calculator
  • Cannon Game
  • Slideshow
  • Favorite Twitter® Searches
  • Painter
  • Voice Recorder
  • Flag Quiz Game
  • Address Book
  • Twitter® Discount Airfares
By Chapter 3 you’ll be building apps using Xcode®, Cocoa® and Interface Builder. You’ll learn object-oriented programming in Objective-C® and build apps using the latest iPhone 3.x technologies including the Game Kit, iPod library access and more.

iPhone for Programmers include practical, example-rich coverage of:


• iPhone SDK 3.x, XCode®, Interface Builder

• Object-Oriented Programming in Objective-C® and Cocoa®

• Collections, GUI, Event Handling

• Controllers, Application Templates

• UIView, Multi-Touch™

• Core Audio, Core Animation, NSTimer

• Tables, UINavigationController

• Map Kit, Core Location, GPS, Compass

• Photos, iPod Library Access

• Serialization

Affordable Price at Store Check Price Now!



Customer Review


Heavily annotated code, no fluff - Peter J. Neame - Tampa, FL
This is not a book for beginners - there isn't much about C-programming, or even about cocoa programming as such. You are expected to have a reasonable grasp of OOP, dot-notation and square brackets and all. What there is is very detailed annotated code for applications that you might actually use. Perhaps the code is over-annotated for some, but I found it very helpful to have a detailed, line-by-line description for those "what's going on here" moments. And in the body of the text, there is a further description of what and why.
A great book that seems to have given me enough "Aha!" moments to make me feel confident of producing something useful.
My only quibble would be that some flow diagrams would have helped. However, given the "style" of the code, which doesn't use interface builder very much, if at all, it's fairly straightforward to build your own diagrams. It is a matter of personal preference as to whether interface builder should be used or whether it's better to wire an application up in code - both may "break" with Apple upgrades/changes, so it is important to understand both approaches. And you can always get a diagram in Xcode.
Strongly recommended.


Iphone for programmers: App Driven Approach - E. Tompkins - Flroida
Excellent book for learning to program iphone apps. complete source code to 14 great apps. This book has a little bit of everything, with knowledge gained you should have no trouble creating a great app for iphone. I also liked that the author responded to emails when i had a problem, that was a huge plus in my book!!




*** Product Information and Prices Stored: Apr 24, 2010 07:12:24


Recommend : All About Kangol Hats - Best Deals, Discounts Best iPad Programming Textbooks Best Deals & Reviews On Cheap Picnic Backpacks Best Deals And Reviews On Child Crutches Cheap Price & Reviews On James Stewart Calculus Solutions

Read more

Cocoa Programming: A Quick-Start Guide for Developers

Cocoa Programming: A Quick-Start Guide for Developers Review










Price : $32.95

Offer Price : $21.75




Overviews

Cocoa Programming: A Quick-Start Guide for Developers shows you how to get productive with Cocoa-fast! We won't walk you through every class and method in the API (but we will show you where to find that information). Instead, we'll jump right in and start building a web browser using Cocoa. In just a few minutes you'll have something that works. A couple of minutes more, and you'll have code in your custom controller, listening for notifications and call-backs. Soon you'll have the functionality you'd expect in a full browser. And that's just the first few chapters...

Affordable Price at Store Check Price Now!





*** Product Information and Prices Stored: Apr 23, 2010 06:55:21


See Also : Best Objective-C Programming Textbooks Best iPad Development Textbooks Best Deals And Reviews On Cocoa Touch Programming Books Cheap Price & Reviews On Calculus Textbook Review Best Deals, Reviews On Master Cycle Bicycle Trailer

Read more

Professional Xcode 3 (Wrox Programmer to Programmer)

Professional Xcode 3 (Wrox Programmer to Programmer) Review






Professional Xcode 3 (Wrox Programmer to Programmer) Features

  • ISBN13: 9780470525227
  • Condition: NEW
  • Notes: Brand New from Publisher. No Remainder Mark.





Price : $49.99

Offer Price : $27.43




Overviews

A solid guide that responds to the active interest in Apple's Xcode tools

Apple's Xcode tools are a collection of applications and frameworks that are used to develop, test, and optimize applications primarily written for Mac OS X or the iPhone. The steady increase in sales of Apple computers has triggered a strong interest in gaining a thorough understanding of Xcode and its tools and what they have to offer. This book provides you with an inside look at the array of Xcode tools from top to bottom.

You'll go beyond the basics and dive into such in-depth topics as installing the latest version of Xcode tools, customizing the look and behavior of Xcode, creating and managing projects, using the built-in class browser to model complex applications and structures, and more.

  • Offers you a solid foundation for getting the most out of Apple's Xcode tools, a collection of applications and frameworks used to develop, test, and optimize applications written for Mac OS X or the iPhone
  • Includes clear, comprehensive lessons for installing the latest version of Xcode tools, customizing the look of Xcode, creating and managing projects, testing your interfaces, and building and debugging your projects
  • Explains analyzing performance, optimizing your application, working with shared sources, creating your own custom file templates, and customizing the interface builder

With this book, you'll be able to take full advantage of the range of tools included with Xcode.

Affordable Price at Store Check Price Now!





*** Product Information and Prices Stored: Apr 22, 2010 06:26:07


See Also : All About Kangol Hats - Best Deals, Discounts Best iPhone Development Textbooks Best Deals And Reviews On Bubble Pool Cover Best Deals And Reviews On Carousel Gumball Machines Best Deals And Reviews On Cat Safety Collar

Read more

Professional Cocoa Application Security

Professional Cocoa Application Security Review










Price : $49.99

Offer Price : $31.49




Overviews

The first comprehensive security resource for Mac and iPhone developers

The Mac platform is legendary for security, but consequently, Apple developers have little appropriate security information available to help them assure that their applications are equally secure. This Wrox guide provides the first comprehensive go-to resource for Apple developers on the available frameworks and features that support secure application development.

  • While Macs are noted for security, developers still need to design applications for the Mac and the iPhone with security in mind; this guide offers the first comprehensive reference to Apple’s application security frameworks and features
  • Shows developers how to consider security throughout the lifecycle of a Cocoa application, including how Mac and iPhone security features work and how to leverage them
  • Describes how to design, implement, and deploy secure Mac and iPhone software, covering how user configurations affect application security, the keychain feature, how to maximize filesystem security, how to write secure code, and much more

Professional Cocoa Application Security arms Apple developers with essential information to help them create Mac and iPhone applications as secure as the operating system they run on.

Affordable Price at BlogBestPrice.com Check Price Now!





*** Product Information and Prices Stored: Apr 21, 2010 06:15:05


Thanks To : Best Objective-C Textbooks BUY "GPS Watches" NOW!! BUY "Kangol Hats" With Affordable Price NOW!! Best Deals And Reviews On Antique Opal Ring Best Deals And Reviews On Antique Opal Rings Best Deals And Reviews On Electric Pool Covers

Read more

Cocoa (API): History of Mac OS X, Apple Inc., Object-oriented programming, Mac OS X, Operating system, Application programming interface, Carbon (API), POSIX, Berkeley Software Distribution

Cocoa (API): History of Mac OS X, Apple Inc., Object-oriented programming, Mac OS X, Operating system, Application programming interface, Carbon (API), POSIX, Berkeley Software Distribution Review








Rating :

Price : $94.00

Offer Price : $89.30




Overviews

High Quality Content by WIKIPEDIA articles! Cocoa is one of Apple Inc.'s native object-oriented application program environments for the Mac OS X operating system. It is one of five major APIs available for Mac OS X; the others are Carbon, POSIX, X11 and Java. Cocoa applications are typically developed using the development tools provided by Apple, specifically Xcode and Interface Builder, using the Objective-C language. However, the Cocoa programming environment can be accessed using other tools, such as Clozure CL, LispWorks, Object Pascal, Python, Perl and Ruby, with the aid of bridging mechanisms such as PasCocoa, PyObjC, CamelBones and RubyCocoa. An implementation of the Ruby language, called MacRuby, which does away with the requirement for a bridging mechanism, is under development by Apple, while Nu is a Lisp-like language which can be used with Cocoa without a bridge. It is also possible to write Objective-C Cocoa programs in a simple text editor and build it manually with GCC or GNUstep's makefile scripts.

Affordable Price at BlogBestPrice.com Check Price Now!





*** Product Information and Prices Stored: Apr 20, 2010 05:45:07


Tags : BUY "Bicycle Trailers" With Affordable Price NOW!! Best Deals And Reviews On Australian Opal Rings Best Deals And Reviews On GPS Watch Garmin Best Deals, Reviews On Bicycle Trailer Hitch

Read more

iPhone Cool Projects

iPhone Cool Projects Review




When reading introductory books in any language, it is easy to learn the language elements and concepts, but it is hard to see how everything fits together. What is great about the cool projects series from Apress is being able to see the elements and concepts in practice with projects from professionals who are active in the field.

Each chapter is written by a different author, so every project covers a different experience and topic. These range from touch interfaces to streaming audio over the network. Some of the projects presented are based on the author's live applications that are currently available through the App Store. A wide range of the topics are covered in the book with practical examples of the concepts.

This book is definitely not an introduction to Cocoa or iPhone programming. It is more geared toward the intermediate reader who has learned the basics and needs practical, real-life examples. It can also be of use to a more experienced iPhone programmer who wants to explore some of the topics in the book without having to dig through the documentation.

I would highly recommend this book because it is easy to read and does not get bogged down with basic concepts. Code is provided on the book's site and is easy to follow the code with the explanations in the book. As a beginning iPhone programmer, I found this book to be a lot of help to work out some of the concepts I was having trouble with.

iPhone Cool Projects Features

  • ISBN13: 9781430223573
  • Condition: NEW
  • Notes: Brand New from Publisher. No Remainder Mark.



Rating :

Price : $39.99

Offer Price : $16.86

Availability : Usually ships in 1-2 business days




Overviews

The iPhone and iPod touch have provided all software developers with a level playing field—developers working alone have the same access to consumers as multinational software publishers. Very cool indeed! To make your application stand out from the crowd, though, it has to have that something extra. You must learn the skills to take your apps from being App Store filler to download chart-topping blockbusters.

Developers with years of experience helped write this book. Spend some time understanding their code and why they took the approach they did. You will find the writing, illustrations, code, and sample applications second to none. No matter what type of application you are writing, you will find something in this book to help you make your app that little bit cooler.

The book opens with Wolfgang Ante, the developer behind the Frenzic puzzle game, showing how timers, animation, and intelligence are used to make game play engaging. It moves on to Rogue Amoeba's Mike Ash explaining how to design a network protocol using UDP, and demonstrating its use in a peer-to-peer application—a topic not normally for the faint of heart, but explained here in a way that makes sense to mere mortals. Gary Bennett then covers the important task of multithreading. Multithreading can be used to keep the user interface responsive while working on other tasks in the background. Gary demonstrates how to do this and highlights traps to avoid along the way.

Next up, Canis Lupus (aka Matthew Rosenfeld) describes the development of the Keynote-controlling application Stage Hand, how the user interface has evolved, and the lessons he has learned from that experience. Benjamin Jackson then introduces two open source libraries: cocos2d, for 2D gaming; and Chipmunk, for rigid body physics (think “collisions”). He describes the development of Arcade Hockey, an air hockey game, and explains some of the code used for this.

Neil Mix of Pandora Radio reveals the science behind processing streaming audio. How do you debug what you can't see? Neil guides you through the toughest challenges, sharing his experience of what works and what to watch out for when working with audio. Finally, Steven Peterson demonstrates a comprehensive integration of iPhone technologies. He weaves Core Location, networking, XML, XPath, and SQLite into a solid and very useful application.

Software development can be hard work. Introductory books lay the foundation, but it can be challenging to understand where to go next. This book shows some of the pieces that can be brought together to make complete, cool applications.

Who is this book for?

All iPhone application developers with any level of experience or coming from any development platform

Summary of Contents

  1. Wolfgang Ante - Designing a Simple, Frenzic-Style Puzzle Game
  2. Mike Ash - Mike Ash’s Deep Dive Into Peer-to-Peer Networking
  3. Gary Bennett - Doing Several Things at Once: Performance Enhancements with Threading
  4. Matthew “Canis” Rosenfeld - All Fingers and Thumbs: Multitouch Interface Design and Implementation
  5. Benjamin Jackson - Physics, Sprites, and Animation with the cocos2d-iPhone Framework
  6. Neil Mix - Serious Streaming Audio the Pandora Radio Way
  7. Steven Peterson - Going the Routesy Way with Core Location, XML, and SQLite

Affordable Price at BlogBestPrice.com Check Price Now!



Customer Review


Poorly Written - Christopher Morris -
I bought this book because I wanted to see code that successful iPhone developers had written. I guess I was looking for "best practices" sort of information and I was hoping that I might get insight on how to tackle some problems I have run into when developing my own applications.

Book Flow

The biggest disappointment in this book is that developers wrote it (I am assuming). The book lacks the continuity you would normally find when one or two people collaborate on an entire book. When a different person writes each chapter, you get seven different styles in this book. I found a couple of the chapters very well written, but the rest I found to be, well, written by developers. I'm not saying that developers are inherently bad at writing, but it takes a certain something to relay information to other developers effectively. Most of the writers of this book just do not have it.

Code Samples

I got very frustrated reading chapters with code snippets from applications the various authors had written. If a working application had been available to provide context to the snippets, then I would have been less frustrated. For example, in Chapter 5, the first 12 pages of the chapter provide code snippets with very brief explanations of what the code is supposed to do. No working example is provided for context. I couldn't even play with the code to see what was going on. It was almost like I was expected just to know the context because I was on the team that wrote the application. The last 10 pages actually create a working sample. I would have rather spent the entire chapter creating the application with better explanations of each step and theory behind the code.

Proofreading

I wish I had a dollar for all the typos I've seen in this book. Again, in chapter 5, page 118 there is a screen shot of the application the author wrote. The caption says it's a screen shot of the application that you will be writing at the end of the chapter. Sloppy.

Conclusion

I feel like I did get some useful information from this book. Was it worth the frustration of reading poorly written text, no context for code snippets, and numerous errors? Not in my opinion.


Looks good on paper, but the devil's in the details - David Ruedger -
I bought this after seeing the high reviews from others on this site. Unfortunately, the content doesn't quite live up to the hype for me. I got this in particular wanting more details about threading having come from the Windows world where I have implemented very robust networking applications that require UI responsiveness while results are cached in the background. I was hoping this book would shed some light on how to go about doing this in the iPhone paradigm, but the example is so rudimentary that it almost isn't even worth putting into the book. Plus, the instructions for building the app are incorrect and contain glaring omissions as well as references to code objects that don't even exist. What's worse is the code itself as listed in the book doesn't even run when built! It causes an unhandled exception due to objects created in the header file not being instantiated or initialized in the implementation file. And no where in the chapter does it say you must download the source code for the example. It walks you through it as if it has been checked and is guaranteed to work as printed. Once you download the source code, it becomes apparent how rushed or poorly thought through this portion of the book was. Whole sections of the header and implementation files are glaringly omitted from the book. Did Bennett even bother proofreading this part of the book, and if so, where were the editors in this process? It's shameful for a book that is marketed as a technical tome to increase a developer's proficiency on the platform.

I'll admit that I haven't delved into other parts of the book in great detail, but the game portion did look pretty interesting at first glance. However, the hands on experience I had with the threading chapter left a very bad first impression and does not leave me all too optimistic on either the usefulness or accuracy of the additional content in the book.





*** Product Information and Prices Stored: Apr 19, 2010 05:41:10


See Also : Buy "iPad, iPhone and iPod Touch Programming" Book Wordpress : Objective-C Programming Textbooks Best Deals And Reviews On Antique Opal Ring

Read more