دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
ویرایش: [3rd Edition]
نویسندگان: Stephen G. Kochan
سری: Developer's Library
ISBN (شابک) : 0321711394, 9780321711397
ناشر: Pearson
سال نشر: 2011
تعداد صفحات: 537
زبان: English
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود)
حجم فایل: 18 Mb
در صورت تبدیل فایل کتاب Programming in Objective-C به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب برنامه نویسی در Objective-C نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
برنامه نویسی در Objective-C یک آموزش مختصر و با دقت نوشته شده در مورد اصول برنامه نویسی Objective-C و شی گرا برای پلتفرم های iOS و Mac است. این کتاب هیچ فرضی در مورد تجربه قبلی با زبان های برنامه نویسی شی گرا یا با زبان C ندارد. (که Objective-C بر اساس آن است). به همین دلیل، هم مبتدیان و هم برنامه نویسان با تجربه می توانند از این کتاب برای یادگیری سریع و موثر اصول Objective-C استفاده کنند. خوانندگان همچنین می توانند مفاهیم برنامه نویسی شی گرا را بدون نیاز به یادگیری تمام پیچیدگی های زبان رویه ای (C) یاد بگیرند. برنامه نویسی در Objective-C را برای استفاده در کلاس درس یا خودآموزی مناسب می کند. در حالی که خود زبان Objective-C از زمان معرفی Objective-C 2.0 تغییرات نسبتاً جزئی را پشت سر گذاشته است، ابزارهای توسعه اپل که برنامه نویسان برای توسعه Objective-C در مک و iOS استفاده می کنند در مدت زمان بسیار کوتاهی به طور قابل توجهی تغییر کرده اند. . ویرایش سوم برنامهنویسی در Objective-C شامل بهروزرسانیها و پیشرفتهای متعدد در سراسر کتاب است: سازماندهی بهبودیافته برای برخی از فصلها شامل بازخورد و پیشنهادات اعضای انجمن نویسنده برای خوانندگان، شامل توضیحات دقیقتر برای برخی از نمونهها، مقدمهای جدید برای بلوک ها با مثال جایگزینی روش های منسوخ شده با روش های جدیدتر نمودارها و مراحل به روز شده برای استفاده از Xcode 4
Programming in Objective-C is a concise, carefully written tutorial on the basics of Objective-C and object-oriented programming for the iOS and Mac 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 procedural language (C).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. While the Objective-C language itself has gone through relatively minor changes since the introduction of Objective-C 2.0, the Apple development tools that programmers use for Objective-C development on the Mac and on iOS have changed significantly in a very short period of time. The third edition of Programming in Objective-C includes numerous updates and improvements throughout the book: Improved organization for some chapters Incorporation of feedback and suggestions from members of the author's forum for readers, including more detailed descriptions for some of the examples A new introduction to blocks with examples Replacement of deprecated methods with newer methods Updated diagrams and steps for using Xcode 4
Table of Contents......Page 9
1 Introduction......Page 20
What You Will Learn from This Book......Page 21
How This Book Is Organized......Page 22
Acknowledgments......Page 24
Compiling and Running Programs......Page 26
Explanation of Your First Program......Page 36
Displaying the Values of Variables......Page 40
Summary......Page 42
What Is an Object, Anyway?......Page 46
Instances and Methods......Page 47
An Objective-C Class for Working with Fractions......Page 49
The @interface Section......Page 51
The @implementation Section......Page 56
The program Section......Page 57
Accessing Instance Variables and Data Encapsulation......Page 64
Summary......Page 67
Data Types and Constants......Page 70
Arithmetic Expressions......Page 74
Assignment Operators......Page 82
A Calculator Class......Page 83
5 Program Looping......Page 88
The for Statement......Page 89
The while Statement......Page 100
The do Statement......Page 104
The continue Statement......Page 106
Summary......Page 107
The if Statement......Page 110
The switch Statement......Page 130
Boolean Variables......Page 133
The Conditional Operator......Page 137
Separate Interface and Implementation Files......Page 142
Synthesized Accessor Methods......Page 147
Accessing Properties Using the Dot Operator......Page 148
Multiple Arguments to Methods......Page 149
Local Variables......Page 154
The self Keyword......Page 159
Allocating and Returning Objects from Methods......Page 160
It All Begins at the Root......Page 168
Extension Through Inheritance: Adding New Methods......Page 173
Overriding Methods......Page 186
Extension Through Inheritance: Adding New Instance Variables......Page 192
Abstract Classes......Page 194
Polymorphism: Same Name, Different Class......Page 198
Dynamic Binding and the id Type......Page 201
Compile Time Versus Runtime Checking......Page 203
The id Data Type and Static Typing......Page 204
Asking Questions About Classes......Page 206
Exception Handling Using @try......Page 210
Initializing Objects......Page 216
Scope Revisited......Page 219
Enumerated Data Types......Page 224
The typedef Statement......Page 227
Data Type Conversions......Page 228
Bit Operators......Page 230
Categories......Page 238
Protocols and Delegation......Page 244
Composite Objects......Page 248
The #define Statement......Page 252
The #import Statement......Page 259
Conditional Compilation......Page 260
13 Underlying C Language Features......Page 266
Arrays......Page 267
Functions......Page 273
Blocks......Page 280
Structures......Page 284
Pointers......Page 293
Unions......Page 311
Miscellaneous Language Features......Page 314
How Things Work......Page 319
Foundation Documentation......Page 324
Number Objects......Page 328
String Objects......Page 333
Array Objects......Page 347
Dictionary Objects......Page 375
Set Objects......Page 379
16 Working with Files......Page 388
Managing Files and Directories: NSFileManager......Page 389
Working with Paths: NSPathUtilities.h......Page 399
Basic File Operations: NSFileHandle......Page 408
The NSURL Class......Page 412
The NSBundle Class......Page 413
The Autorelease Pool......Page 416
Reference Counting......Page 417
An Autorelease Example......Page 428
Summary of Memory-Management Rules......Page 429
More on the Event Loop and Memory Allocation......Page 430
Garbage Collection......Page 432
18 Copying Objects......Page 436
The copy and mutableCopy Methods......Page 437
Shallow Versus Deep Copying......Page 439
Implementing theProtocol......Page 441
Copying Objects in Setter and Getter Methods......Page 444
Archiving with XML Property Lists......Page 448
Archiving with NSKeyedArchiver......Page 450
Writing Encoding and Decoding Methods......Page 452
Using NSData to Create Custom Archives......Page 459
Using the Archiver to Copy Objects......Page 462
Framework Layers......Page 464
Cocoa Touch......Page 465
Your First iPhone Application......Page 468
An iPhone Fraction Calculator......Page 483
Summary......Page 497
A......Page 500
C......Page 501
G......Page 502
L......Page 503
P......Page 504
S......Page 505
Z......Page 506
B: Address Book Source Code......Page 508
Index......Page 514
A......Page 515
B......Page 516
C......Page 517
D......Page 520
E......Page 522
F......Page 523
I–J......Page 525
L......Page 527
M......Page 528
N......Page 532
O......Page 533
P......Page 534
R......Page 537
S......Page 538
T......Page 541
V......Page 542
Z......Page 543