Iphone SDK Development Building Iphone Applications

Total Page:16

File Type:pdf, Size:1020Kb

Iphone SDK Development Building Iphone Applications Prepared exclusively for Rodney Pearson Beta Book Agile publishing for agile developers The book you’re reading is still under development. As part of our Beta book program, we’re releasing this copy well before we normally would. That way you’ll be able to get this content a couple of months before it’s available in finished form, and we’ll get feedback to make the book even better. The idea is that everyone wins! Be warned. The book has not had a full technical edit, so it will con- tain errors. It has not been copyedited, so it will be full of typos and other weirdness. And there’s been no effort spent doing layout, so you’ll find bad page breaks, over-long lines with little black rectan- gles, incorrect hyphenations, and all the other ugly things that you wouldn’t expect to see in a finished book. We can’t be held liable if you use this book to try to create a spiffy application and you somehow end up with a strangely shaped farm implement instead. Despite all this, we think you’ll enjoy it! Throughout this process you’ll be able to download updated PDFs from your account on http://pragprog.com. When the book is finally ready, you’ll get the final version (and subsequent updates) from the same address. In the meantime, we’d appreciate you sending us your feedback on this book at http://pragprog.com/titles/amiphd/errata, or by using the links at the bottom of each page. Thank you for being part of the Pragmatic community! Dave & Andy Prepared exclusively for Rodney Pearson iPhone SDK Development Building iPhone Applications Chris Adamson Bill Dudney with Marcel Molina The Pragmatic Bookshelf Raleigh, North Carolina Dallas, Texas Prepared exclusively for Rodney Pearson Many of the designations used by manufacturers and sellers to distinguish their prod- ucts are claimed as trademarks. Where those designations appear in this book, and The Pragmatic Programmers, LLC was aware of a trademark claim, the designations have been printed in initial capital letters or in all capitals. The Pragmatic Starter Kit, The Pragmatic Programmer, Pragmatic Programming, Pragmatic Bookshelf and the linking g device are trademarks of The Pragmatic Programmers, LLC. Every precaution was taken in the preparation of this book. However, the publisher assumes no responsibility for errors or omissions, or for damages that may result from the use of information (including program listings) contained herein. Our Pragmatic courses, workshops, and other products can help you and your team create better software and have more fun. For more information, as well as the latest Pragmatic titles, please visit us at http://www.pragprog.com Copyright © 2008 Chris Adamson, Bill Dudney, and Marcel Molina. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmit- ted, in any form, or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior consent of the publisher. Printed in the United States of America. ISBN-10: 1-934356-25-5 ISBN-13: 978-1-934356-25-8 Printed on acid-free paper. B12.0 printing, April 14, 2009 Version: 2009-4-14 Prepared exclusively for Rodney Pearson Contents Changes in the Beta Releases 10 Beta 12—April 14 .......................... 10 Beta 11—March 2 .......................... 10 Beta 10—January 30 ........................ 11 Beta 9—January 16 ........................ 11 Beta 8—December 19 ........................ 11 Beta 7—December 3 ........................ 12 Beta 6—November 21 ........................ 12 Beta 5—November 14 ........................ 12 Beta 4—October 24 ......................... 13 Beta 3—October 9 .......................... 14 Beta 2—October 3 .......................... 14 1 Hello iPhone 15 1.1 Gearing up .......................... 15 1.2 Create the Hello iPhone Project .............. 17 1.3 Creating a simple Interface ................ 19 1.4 Rotating the Text—adjusting the UI ........... 22 1.5 Rotating the Text—adjusting the code .......... 23 1.6 Code Navigation ....................... 24 1.7 Running your app on your iPhone ............ 25 2 iPhone Development Fundamentals 27 2.1 The iPhone Software Architecture ............. 28 2.2 Coding in Objective-C .................... 28 2.3 Working with Xcode and Interface Builder ........ 30 2.4 Anatomy of your iPhone application ........... 40 2.5 Customizing behavior with delegation .......... 42 2.6 Managing Application Memory .............. 45 2.7 Accessing Variables as Properties ............. 47 2.8 Takeaway: Stuff to Remember ............... 49 Prepared exclusively for Rodney Pearson CONTENTS 6 3 View Controllers 51 3.1 View Controllers start to finish .............. 52 3.2 Multiple View Controllers ................. 55 3.3 Creating and Connecting your Outlets .......... 57 3.4 Creating the new View Controller ............. 60 3.5 The Second View Controller ................ 63 3.6 The Editing View Controller in Interface Builder . 65 4 Table Views 68 4.1 Our first table view app ................... 68 4.2 Getting the table view to display cells .......... 69 4.3 Improving performance by reusing cells ......... 71 4.4 Deleting rows ........................ 73 4.5 Inserting rows ........................ 75 4.6 Sliding in a view for adding data ............. 77 4.7 Hooking the interface up to its view ........... 78 4.8 Presenting the data entry view .............. 80 4.9 Configuring a text field and its keyboard ........ 81 4.10 Passing user input back to the table view controller . 82 4.11 Updating the table view .................. 83 4.12 Designing Table Cells with Interface Builder ...... 84 5 Navigation 92 5.1 Navigating through Mail .................. 92 5.2 The Navigation Controller ................. 93 5.3 Navigation Based Applications .............. 94 5.4 Pushing View Controllers ................. 97 5.5 Customizing the Navigation Bar .............. 99 5.6 Popping View Controllers .................. 104 6 Tab Bar Controllers 106 6.1 When to use tabs ...................... 106 6.2 Creating a Tab Bar Controller ............... 108 6.3 View Controllers in Tab Controllers ............ 109 6.4 Many Controllers ...................... 114 7 File I/O 117 7.1 Exploring Your Filesystem ................. 118 7.2 Reading Data From Files .................. 130 7.3 Asynchronous File Reading ................ 133 7.4 Creating and Deleting Files and Directories ....... 136 7.5 Writing Data To Files .................... 141 Report erratum Prepared exclusively for Rodney Pearson this copy is (B12.0 printing, April 14, 2009) CONTENTS 7 8 Preferences 144 8.1 Displaying a Flippable Preference View in Your Appli- cation ............................. 144 8.2 Using the System Settings Application for Preferences . 152 8.3 Loading Preferences Configured in the Settings Appli- cation ............................. 158 9 The SQLite Database 161 9.1 Creating Your Database .................. 162 9.2 Creating the sample application .............. 164 9.3 Putting Your Database on the Device ........... 166 9.4 Using Your Database on the Device ............ 169 10 Core Data 179 11 Network I/O 180 11.1 Building a Browser in 10 Minutes with UIWebView . 180 11.2 Reading Data from the Network .............. 186 11.3 Handling HTTP Authentication .............. 191 11.4 Using Ad Hoc Network Services with Bonjour . 198 12 Events, Multi Touch and Gestures 207 12.1 Event Model ......................... 207 12.2 Tracking Touches ...................... 209 12.3 Tapping ............................ 211 12.4 Multi-Touch Gestures ................... 213 13 Drawing in Custom Views 219 13.1 Drawing Model ........................ 219 13.2 Vector Drawing ....................... 220 13.3 Paths ............................. 222 13.4 Graphics Context ...................... 228 13.5 Redisplaying a View ..................... 231 14 Drawing Images and Photos 233 14.1 Basic Image Drawing .................... 234 14.2 Customizing the Image Display .............. 236 14.3 Image Picker ......................... 238 Report erratum Prepared exclusively for Rodney Pearson this copy is (B12.0 printing, April 14, 2009) CONTENTS 8 15 Core Animation 243 15.1 Intro to Core Animation .................. 243 15.2 Animating UIView ...................... 244 15.3 Layers ............................. 250 15.4 OpenGL ES .......................... 253 16 Basic Media Playback 257 16.1 Video Playback with MPMoviePlayerController ....... 257 16.2 Supported media formats ................. 263 16.3 Playing Compressed Audio with AVAudioPlayer . 265 16.4 Using AVAudioPlayer’s properties .............. 271 16.5 Using AVAudioPlayer’s level metering ........... 274 17 Advanced Audio Playback 279 17.1 Using the Procedural-C APIs ................ 279 17.2 Getting metadata from audio files ............. 282 17.3 Defining Audio Behavior .................. 285 17.4 Playing System Sounds ................... 292 18 iPhone Location API 299 18.1 Knowing Where ....................... 299 18.2 Location Updates ...................... 303 19 Accelerometer 309 19.1 Getting device orientation ................. 310 19.2 Getting raw accelerometer data .............. 311 19.3 Filtering accelerometer data ................ 318 20 Streaming Audio 324 20.1 Streaming Media Concepts ................. 324 20.2 The Core Audio Frameworks ................ 327 20.3 Recording with Audio Queue Services .......... 328 20.4 Playback with Audio Queue Services ........... 341 20.5 Converting Audio Formats ................. 350 20.6 Next Steps .......................... 358 21 Address Book 359 21.1 Address
Recommended publications
  • Link IDE : a Real Time Collaborative Development Environment
    San Jose State University SJSU ScholarWorks Master's Projects Master's Theses and Graduate Research Spring 2012 Link IDE : A Real Time Collaborative Development Environment Kevin Grant San Jose State University Follow this and additional works at: https://scholarworks.sjsu.edu/etd_projects Part of the Computer Sciences Commons Recommended Citation Grant, Kevin, "Link IDE : A Real Time Collaborative Development Environment" (2012). Master's Projects. 227. DOI: https://doi.org/10.31979/etd.rqpj-pj3k https://scholarworks.sjsu.edu/etd_projects/227 This Master's Project is brought to you for free and open access by the Master's Theses and Graduate Research at SJSU ScholarWorks. It has been accepted for inclusion in Master's Projects by an authorized administrator of SJSU ScholarWorks. For more information, please contact [email protected]. Link IDE : A Real Time Collaborative Development Environment A Project Report Presented to The Faculty of the Department of Computer Science San José State University In Partial Fulfillment of the Requirements for the Degree Master of Science in Computer Science by Kevin Grant May 2012 1 © 2012 Kevin Grant ALL RIGHTS RESERVED 2 SAN JOSE STATE UNIVERSITY The Undersigned Project Committee Approves the Project Titled Link : A Real Time Collaborative Development Environment by Kevin Grant APPROVED FOR THE DEPARTMENT OF COMPUTER SCIENCE SAN JOSÉ STATE UNIVERSITY May 2012 ------------------------------------------------------------------------------------------------------------ Dr. Soon Tee Teoh, Department
    [Show full text]
  • Devonagentpro
    DEVONagent Pro VERSION 3.11 DOCUMENTATION © 2001-2018 DEVONtechnologies TABLE OF CONTENTS Read Me 4 Menus 29 The DEVONagent Pro Advantage 5 The DEVONagent Pro menu 29 System Requirements 6 The File menu 30 Installing, Updating, Removing 6 The Edit menu 31 Trial Restrictions 6 The Data menu 32 Version history 7 The Sort menu 33 License Agreement 11 The View menu 33 Credits 11 The Web menu 34 The History menu 35 Getting Started 12 The Go menu 36 Why use DEVONagent Pro? 12 The Window menu 36 When to use DEVONagent Pro? 12 The Services menu 37 DEVONagent Pro at a Glance 13 The Scripts menu 37 First steps with DEVONagent Pro 13 The Help menu 37 The Dock menu 38 Common Tasks 14 Windows and panels 39 How to find on the Internet 14 How to search beyond Google 14 Search window 40 How to customize DEVONagent Pro 15 Web browser 46 How to set up a search set to crawl feeds 15 Archive window 52 How to run a search automatically 16 Search sets 54 How to archive search results 16 Plugins and scanners 54 Downloads 56 Queries 18 Preferences 57 Assistant 57 Operators 18 Designing a search query 19 Preferences 59 Search sets 21 General 59 Search 60 What are search sets? 21 Menu extra 61 Choosing a search set 21 Web 62 Creating and managing sets 22 Tabs 63 Sharing sets 23 Bookmarks 64 General tab 23 Email 64 Advanced tab 25 Update 65 Sites tab 25 Plugins tab 26 Menu extra 66 Actions tab 27 Scripts 67 Schedule tab 28 Introduction 67 DEVONagent Pro's Scripts menu 68 Automator 69 DEVONagent Pro 3.11 Documentation, page 2 Plugin Development 70 Creating Your Own
    [Show full text]
  • Real Differences Between OT and CRDT for Co-Editors
    Real Differences between OT and CRDT in Building Co- Editing Systems and Real World Applications DAVID SUN, Codox Inc., United States CHENGZHENG SUN, Nanyang Technological University, Singapore AGUSTINA NG, Nanyang Technological University, Singapore WEIWEI CAI, Nanyang Technological University, Singapore OT (Operational Transformation) was invented for supporting real-time co-editors in the late 1980s and has evolved to become core techniques widely used in today’s working co-editors and adopted in industrial products. CRDT (Commutative Replicated Data Type) for co-editors was first proposed around 2006, under the name of WOOT (WithOut Operational Transformation). Follow-up CRDT variations are commonly labeled as "post-OT" techniques capable of making concurrent operations natively commutative in co-editors. On top of that, CRDT solutions have made broad claims of superiority over OT solutions, and often portrayed OT as an incorrect and inefficient technique. Over one decade later, however, CRDT is rarely found in working co- editors; OT remains the choice for building the vast majority of today’s co-editors. Contradictions between the reality and CRDT’s purported advantages have been the source of much confusion and debate in co-editing researcher and developer communities. To seek truth from facts, we set out to conduct a comprehensive and critical review on representative OT and CRDT solutions and working co-editors based on them. From this work, we have made important discoveries about OT and CRDT, and revealed facts and evidences that refute CRDT claims over OT on all accounts. These discoveries help explain the underlying reasons for the choice between OT and CRDT in the real world.
    [Show full text]
  • Large-Scale Trustworthy Distributed Collaboration Claudia-Lavinia Ignat
    Large-scale trustworthy distributed collaboration Claudia-Lavinia Ignat To cite this version: Claudia-Lavinia Ignat. Large-scale trustworthy distributed collaboration. Distributed, Parallel, and Cluster Computing [cs.DC]. Université de Lorraine, 2021. tel-03229173 HAL Id: tel-03229173 https://hal.inria.fr/tel-03229173 Submitted on 18 May 2021 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Ecole´ doctorale IAEM Lorraine Large-scale trustworthy distributed collaboration THESE` pr´esent´eeet soutenue publiquement le 23 avril 2021 pour l'obtention d'une Habilitation de l'Universit´ede Lorraine (mention informatique) par Claudia-Lavinia Ignat Composition du jury Rapporteurs : M. Prasun DEWAN Professeur, University of North Carolina at Chapel Hill Mme Val´erieISSARNY Directrice de Recherche, Inria M. Fran¸coisTAIANI Professeur des Universit´es,Universit´ede Rennes I Examinateurs : Mme Sihem AMER-YAHIA Directrice de Recherche CNRS M. Fran¸coisCHAROY Professeur des Universit´es,Universit´ede Lorraine Mme Isabelle CHRISMENT Professeur des Universit´es,Universit´ede Lorraine M. Fabien GANDON Directeur de Recherche Inria M. Pascal MOLLI Professeur des Universit´es,Universit´ede Nantes Laboratoire Lorrain de Recherche en Informatique et ses Applications | UMR 7503 Mis en page avec la classe thesul.
    [Show full text]
  • Eaglefiler 1.9.2 Manual
    EagleFiler 1.9.2 Manual C-Command Software c-command.com December 21, 2020 Contents 1 Introduction 6 1.1 Importing Is a Snap.........................................6 1.2 Familiar Mail-like Interface.....................................7 1.3 Search Everything..........................................8 1.4 The Library Is Open.........................................9 1.5 Reliable Data Storage........................................ 10 1.6 Add Tags and Notes......................................... 11 1.7 Speed Up and Simplify Your Other Applications......................... 14 1.8 Multiple Libraries.......................................... 14 1.9 Feature List.............................................. 14 2 Installing and Updating 18 2.1 Requirements............................................. 18 2.2 Installing EagleFiler......................................... 18 2.3 Updating From a Previous Version................................. 18 2.4 Reinstalling a Fresh Copy...................................... 19 2.5 Uninstalling EagleFiler........................................ 20 2.6 Security & Privacy Access...................................... 20 3 Using EagleFiler 23 3.1 Basics................................................. 23 3.2 Library Folders............................................ 24 3.3 What Can Be Imported....................................... 28 3.4 Ways to Import............................................ 29 3.4.1 Applications That Support Capture............................ 30 3.4.2 Importing Existing Files..................................
    [Show full text]