Selasa, 24 Desember 2013

Wow! eBook: Learning Mobile App Development - 4 new eBooks


Wow! eBook: Learning Mobile App Development - 4 new eBooks

Link to Wow! eBook

Learning Mobile App Development

Posted: 24 Dec 2013 12:58 PM PST

Book Description

The Only Tutorial Covering BOTH iOS and Android—for students and professionals alike!

Now, one book can help you master mobile app development with both market-leading platforms: Apple's iOS and Google's Android. Perfect for both students and professionals, Learning Mobile App Development is the only tutorial with complete parallel coverage of both iOS and Android. With this guide, you can master either platform, or both—and gain a deeper understanding of the issues associated with developing mobile apps.

You'll develop an actual working app on both iOS and Android, mastering the entire mobile app development lifecycle, from planning through licensing and distribution.

Each tutorial in this book has been carefully designed to support readers with widely varying backgrounds and has been extensively tested in live developer training courses. If you're new to iOS, you'll also find an easy, practical introduction to Objective-C, Apple's native language.

All source code for this book, organized by chapter, is available at https://github.com/LearningMobile/BookApps

Coverage includes

  • Understanding the unique design challenges associated with mobile apps
  • Setting up your Android and iOS development environments
  • Mastering Eclipse development tools for Android and Xcode 5 tools for iOS
  • Designing interfaces and navigation schemes that leverage each platform's power
  • Reliably integrating persistent data into your apps
  • Using lists (Android) or tables (iOS) to effectively present data to users
  • Capturing device location, displaying it, and using it in your apps
  • Accessing hardware devices and sensors
  • Publishing custom apps internally within an organization
  • Monetizing your apps on Apple's AppStore or the Google Play marketplace, as well as other ways of profiting from app development, such as consulting and developer jobs

Table of Contents
Part I: Overview of Mobile App Development
Chapter 1. Why Mobile Apps?
Chapter 2. App Design Issues and Considerations

Part II: Developing the Android App
Chapter 3. Using Eclipse for Android Development
Chapter 4. Android Navigation and Interface Design
Chapter 5. Persistent Data in Android
Chapter 6. Lists in Android: Navigation and Information
Chapter 7. Maps and Location in Android
Chapter 8. Access to Hardware and Sensors in Android

Part III: Developing the iOS App
Chapter 9. Using Xcode for iOS Development
Chapter 10. iOS Navigation and Interface Design
Chapter 11. Persistent Data in iOS
Chapter 12. Tables in iOS: Navigation and Information
Chapter 13. Maps and Location in iOS
Chapter 14. Access to Hardware and Sensors in iOS

Part IV: Business Issues
Chapter 15. Monetizing Apps
Chapter 16. Publishing Apps

Part V: Appendixes
Appendix A. Installing Eclipse and Setup for Android
Appendix B. Installing Xcode and Registering Physical
Appendix C. Introduction to Objective-C

Book Details

  • Paperback: 464 pages
  • Publisher: Addison-Wesley Professional (December 2013)
  • Language: English
  • ISBN-10: 032194786X
  • ISBN-13: 978-0321947864
Note: There is a file embedded within this post, please visit this post to download the file.

Related Books

The post Learning Mobile App Development appeared first on Wow! eBook.

Programming in Objective-C, 6th Edition

Posted: 24 Dec 2013 12:53 PM PST

Book Description

Updated for OS X 10.9 Mavericks, iOS 7, and Xcode 5

Programming in Objective-C is a concise, carefully written tutorial on the basics of Objective-C and object-oriented programming for Apple’s iOS and OS X platforms.

The book makes no assumptions about prior experience with object-oriented programming languages or with the C language (which Objective-C is based upon). Because of this, both beginners and experienced programmers alike can use this book to quickly and effectively learn the fundamentals of Objective-C. Readers can also learn the concepts of object-oriented programming without having to first learn all of the intricacies of the underlying C programming language.

This unique approach to learning, combined with many small program examples and exercises at the end of each chapter, makes Programming in Objective-C ideally suited for either classroom use or self-study.

This edition has been fully updated to incorporate new Objective-C features and technologies introduced with Xcode 5, iOS 7, and Mac OS X Mavericks.

"The best book on any programming language that I've ever read. If you want to learn Objective-C, buy it."–Calvin Wolcott

"An excellent resource for a new programmer who wants to learn Objective-C as their first programming language–a woefully underserved market."–Pat Hughes

Table of Contents
Chapter 1. Introduction

Part I: The Objective-C Language
Chapter 2. Programming in Objective-C
Chapter 3. Classes, Objects, and Methods
Chapter 4. Data Types and Expressions
Chapter 5. Program Looping
Chapter 6. Making Decisions
Chapter 7. More on Classes
Chapter 8. Inheritance
Chapter 9. Polymorphism, Dynamic Typing, and Dynamic Binding
Chapter 10. More on Variables and Data Types
Chapter 11. Categories and Protocols
Chapter 12. The Preprocessor
Chapter 13. Underlying C Language Features

Part II: The Foundation Framework
Chapter 14. Introduction to the Foundation Framework
Chapter 15. Numbers, Strings, and Collections
Chapter 16. Working with Files
Chapter 17. Memory Management and Automatic Reference Counting (ARC)
Chapter 18. Copying Objects
Chapter 19. Archiving

Part III: Cocoa, Cocoa Touch, and the iOS SDK
Chapter 20. Introduction to Cocoa and Cocoa Touch
Chapter 21. Writing iOS Applications

Appendixes
Appendix A. Glossary
Appendix B. Address Book Program Source Code

Book Details

  • Paperback: 576 pages
  • Publisher: Addison-Wesley Professional; 6th Edition (December 2013)
  • Language: English
  • ISBN-10: 0321967607
  • ISBN-13: 978-0321967602
Note: There is a file embedded within this post, please visit this post to download the file.

Related Books

The post Programming in Objective-C, 6th Edition appeared first on Wow! eBook.

C Primer Plus, 6th Edition

Posted: 24 Dec 2013 12:49 PM PST

Book Description

C Primer Plus is a carefully tested, well-crafted, and complete tutorial on a subject core to programmers and developers. This computer science classic teaches principles of programming, including structured code and top-down design.

Author and educator Stephen Prata has created an introduction to C that is instructive, clear, and insightful. Fundamental programming concepts are explained along with details of the C language. Many short, practical examples illustrate just one or two concepts at a time, encouraging readers to master new topics by immediately putting them to use.

Review questions and programming exercises at the end of each chapter bring out the most critical pieces of information and help readers understand and digest the most difficult concepts. A friendly and easy-to-use self-study guide, this book is appropriate for serious students of programming, as well as developers proficient in other languages with a desire to better understand the fundamentals of this core language.

The sixth edition of this book has been updated and expanded to cover the latest developments in C as well as to take a detailed look at the new C11 standard. In C Primer Plus you'll find depth, breadth, and a variety of teaching techniques and tools to enhance your learning:

  • Complete, integrated discussion of both C language fundamentals and additional features
  • Clear guidance about when and why to use different parts of the language
  • Hands-on learning with concise and simple examples that develop your understanding of a concept or two at a time
  • Hundreds of practical sample programs
  • Review questions and programming exercises at the end of each chapter to test your understanding
  • Coverage of generic C to give you the greatest flexibility

Table of Contents
Chapter 1. Getting Ready
Chapter 2. Introducing C
Chapter 3. Data and C
Chapter 4. Character Strings and Formatted Input/Output
Chapter 5. Operators, Expressions, and Statements
Chapter 6. C Control Statements: Looping
Chapter 7. C Control Statements: Branching and Jumps
Chapter 8. Character Input/Output and Input Validation
Chapter 9. Functions
Chapter 10. Arrays and Pointers
Chapter 11. Character Strings and String Functions
Chapter 12. Storage Classes, Linkage, and Memory Management
Chapter 13. File Input/Output
Chapter 14. Structures and Other Data Forms
Chapter 15. Bit Fiddling
Chapter 16. The C Preprocessor and the C Library
Chapter 17. Advanced Data Representation

Appendix A. Answers to the Review Questions
Appendix B. Reference Section

Book Details

  • Paperback: 1080 pages
  • Publisher: Addison-Wesley Professional; 6th Edition (December 2013)
  • Language: English
  • ISBN-10: 0321928423
  • ISBN-13: 978-0321928429
Note: There is a file embedded within this post, please visit this post to download the file.

Related Books

The post C Primer Plus, 6th Edition appeared first on Wow! eBook.

jQuery and JavaScript Phrasebook

Posted: 24 Dec 2013 12:44 PM PST

Book Description

Get more done faster with jQuery and JavaScript! Brad Dayley's jQuery and JavaScript Phrasebook brings together 100+ instantly useful code snippets and idioms for performing a wide spectrum of common web application tasks. This hands-on guide gets straight to the essence of what's new and important in jQuery and JavaScript, and what you need to know to build new web solutions or migrate existing sites to jQuery.

Building on JavaScript Phrasebook, Dayley presents carefully tested, flexible, adaptable code – all organized for quick lookup and easy use. Dayley's coverage ranges from the basics to advanced jQuery capabilities, including jQueryUI widgets and mobile development. Coverage includes:

  • Basics, including selecting and manipulating HTML elements with jQuery Selector
  • Dynamically manipulating CSS values
  • Handling browser and DOM events
  • Performing validation
  • Server communication
  • REST, PHP, MySQL, AJAX, and JSON/XML data
  • Positioning web page elements and making them interactive
  • Using animation and other special effects
  • And much more

jQuery and JavaScript Phrasebook is the perfect quick reference for millions of web developers who want reliable solutions they can use right now — with no distractions and no diversions!

Table of Contents
Chapter 1. Jumping into jQuery, JavaScript, and the World of Dynamic Web Development
Chapter 2. Using the JavaScript Language
Chapter 3. Interacting with the Browser
Chapter 4. Accessing HTML Elements
Chapter 5. Manipulating the jQuery Object Set
Chapter 6. Capturing and Using Browser and User Events
Chapter 7. Manipulating Web Page Elements Dynamically
Chapter 8. Manipulating Web Page Layout Dynamically
Chapter 9. Dynamically Working With Form Elements
Chapter 10. Building Web Page Content Dynamically
Chapter 11. Adding jQuery UI Elements
Chapter 12. Animation and other Special Effects
Chapter 13. Using AJAX to Communicate with Web Servers and Web Services
Chapter 14. Implementing Mobile Web Sites with jQuery

Book Details

  • Series: Developer’s Library
  • Paperback: 384 pages
  • Publisher: Addison-Wesley Professional (December 2013)
  • Language: English
  • ISBN-10: 0321918967
  • ISBN-13: 978-0321918963
Note: There is a file embedded within this post, please visit this post to download the file.

Related Books

The post jQuery and JavaScript Phrasebook appeared first on Wow! eBook.

Tidak ada komentar:

Posting Komentar