- 浏览: 242820 次
- 性别:
- 来自: 北京
-
文章分类
- 全部博客 (118)
- Ruby/ROR (4)
- Mac (28)
- 我的见闻触发你我的灵感 (1)
- 创业 (1)
- JOSSO (2)
- XML (2)
- OpenRemote (1)
- 娱乐 (2)
- 版权/License (1)
- Java/Spring (4)
- 调试 (1)
- 路由器 (2)
- 技术博客 (21)
- 虚拟机 (1)
- Javascript (6)
- SVN (2)
- HA(Home Automation) (0)
- Android (2)
- iPhone/iPod (23)
- iPad (22)
- iOS公共 (28)
- Windows7 (1)
- 服务器技术 (2)
- 其它 (1)
- Shell (1)
- 数据库 (1)
- 问题总结 (1)
最新评论
-
zjjzmw1:
...
转载:IOS开发之——objectForKey与valueForKey在NSDictionary中的差异 -
hldfxh:
解决了我的问题
JSON Lib, XML转JSON字符串不要namespace,以及处理特殊xml属性"type" -
herry68:
可以给我提供以下你的这个NSData+Base64.h类吗
图片转base64串及反转回图片 -
herry68:
我用这个方法把图片转换成nsstring成功了,但是从nsst ...
图片转base64串及反转回图片 -
hibluse:
handy.wang 写道hibluse 写道我已经设置了WA ...
基于FMDB-SQLite的App数据库性能优化
Referenced from: http://developer.apple.com/mac/library/referencelibrary/GettingStarted/Learning_Objective-C_A_Primer/index.html#//apple_ref/doc/uid/TP40007594
=====================================================
Learning Objective-C: A Primer
- Table of Contents
Learning Objective-C: A PrimerThe Objective-C language is a simple computer language designed to enable sophisticated object-oriented programming. Objective-C extends the standard ANSI C language by providing syntax for defining classes, and methods, as well as other constructs that promote dynamic extension of classes. (This document doesn’t attempt to teach any aspects of C itself. If you’re not familiar with the language, you should learn about the basics before you proceed.) If you have programmed with object-oriented languages before, the following information should help you learn the basic syntax of Objective-C. Many of the traditional object-oriented concepts, such as encapsulation, inheritance, and polymorphism, are all present in Objective-C. There are a few important differences, but those differences are called out in this article and more detailed information is available if you need it. If you have never programmed using an object-oriented language before, you need to have at least a basic understanding of the associated concepts before proceeding. The use of objects and object-oriented design patterns is fundamental to the design of Cocoa applications, and understanding how they interact is critical to creating your applications. For an overview of concepts, see Object-Oriented Programming with Objective-C . In addition, see Cocoa Fundamentals Guide for information about the design patterns used in Cocoa. For full details of the Objective-C language and syntax, see The Objective-C Programming Language . Objective-C: A Superset of CObjective-C is a superset of the ANSI version of the C programming language and supports the same basic syntax as C. As with C code, you define header files and source files to separate public declarations from the implementation details of your code. Objective-C header files use the file extensions listed in Table 1 .
Table 1
File extensions for Objective-C code
Extension Source type
When you want to include header files in your source code, you typically use a ClassesAs in most other object-oriented languages, classes in Objective-C provide the basic construct for encapsulating some data with the actions that operate on that data. An object is a runtime instance of a class, and contains its own in-memory copy of the instance variables declared by that class and pointers to the methods of the class. The
specification of a class in Objective-C requires two distinct pieces:
the interface and the implementation. The interface portion contains
the class declaration and defines the instance variables and methods
associated with the class. The interface is usually in a Figure 1
shows the syntax for declaring a class called Figure 1 A class declaration ![]()
Note:
Although
this class declaration declares only methods, classes can also declare
properties. For more information on properties, see “Declared Properties”
.
When
storing objects in variables, you always use a pointer type.
Objective-C supports both strong and weak typing for variables
containing objects. Strongly typed pointers include the class name in
the variable type declaration. Weakly typed pointers use the type The following example shows strongly and weakly typed variable declarations:
Notice the Methods and MessagingA class in Objective-C can declare two types of methods: instance methods and class methods. An instance method is a method whose execution is scoped to a particular instance of the class. In other words, before you call an instance method, you must first create an instance of the class. Class methods, by comparison, do not require you to create an instance, but more on that later. The declaration of a method
consists of the method type identifier, a return type, one or more
signature keywords, and the parameter type and name information. Figure 2
shows the declaration of the Figure 2 Method declaration syntax ![]() This declaration is preceded by a minus ( When you want to call a method, you do so by messaging an object. A message is the method signature, along with the parameter information the method needs. All messages you send to an object are dispatched dynamically, thus facilitating the polymorphic behavior of Objective-C classes. Messages are enclosed by brackets (
To
avoid declaring numerous local variables to store temporary results,
Objective-C lets you nest messages. The return value from each nested
message is used as a parameter, or as the target, of another message.
For example, you could replace any of the variables used in the
previous example with messages to retrieve the values. Thus, if you had
another object called
Objective-C also provides a dot syntax for invoking accessor methods
. Accessor methods get and set the state of an object, and typically take the form
You can also use dot syntax for assignment:
This is simply a different syntax for writing, Although the preceding examples sent messages to an instance of a class, you can also send messages to the class itself. When messaging a class, the method you specify must be defined as a class method instead of an instance method. You can think of class methods as something akin to (but not exactly like) static members in a C++ class. You typically use class methods as factory methods to create new instances of the class or for accessing some piece of shared information associated with the class. The syntax for a class method declaration is identical to that of an instance method, with one exception. Instead of using a minus sign for the method type identifier, you use a plus (+) sign. The following example illustrates how you use a class method as a factory method for a class. In this case, the
Listing 1
shows the implementation of Listing 1 A class implementation
Declared PropertiesDeclared properties are a convenience notation used to replace the declaration and, optionally, implementation of accessor methods. You include property declarations with the method declarations in your class interface. The basic definition uses the
Each
readable property specifies a method with the same name as the
property. Each writable property specifies an additional method of the
form In your class implementation, you can use the
You can combine the
Practically speaking, properties reduce the amount of redundant code you have to write. Because most accessor methods are implemented in similar ways, properties eliminate the need to implement a getter and setter method for each property exposed in the class. Instead, you specify the behavior you want using the property declaration and then synthesize actual getter and setter methods based on that declaration at compile time. For information on how to declare properties in your own classes, read Declared Properties in The Objective-C Programming Language . StringsAs
a superset of C, Objective-C supports the same conventions for
specifying strings as C. In other words, single characters are enclosed
by single quotes and strings of characters are surrounded by double
quotes. However, most Objective-C frameworks do not use C-style strings
very often. Instead, most frameworks pass strings around in The
Protocols and DelegatesA protocol declares methods that can be implemented by any class. Protocols are not classes themselves. They simply define an interface that other objects are responsible for implementing. When you implement the methods of a protocol in one of your classes, your class is said to conform to that protocol. Protocols are used frequently to specify the interface for delegate objects. A delegate object is an object that acts on behalf of, or in coordination with, another object. The best way to look at the interplay between protocols, delegates, and other objects is to look at an example. The The declaration of a protocol looks similar to that of a class interface, with the exceptions that protocols do not have a parent class and they do not define instance variables. The following example shows a simple protocol declaration with one method:
In the case of many delegate protocols, adopting a protocol is simply a matter of implementing the methods defined by that protocol. There are some protocols that require you to state explicitly that you support the protocol, and protocols can specify both required and optional methods. As you get further into your development, however, you should spend a little more time learning about protocols and how they are used by reading Protocols in The Objective-C Programming Language . For More InformationThe preceding information was intended primarily to familiarize you with the basics of the Objective-C language. The subjects covered here reflect the language features you are most likely to encounter as you read through the rest of the documentation. These are not the only features of the language though, and you are encouraged to read more about the language in The Objective-C Programming Language . Last updated: 2009-06-25 |
Shop the Apple Online Store (1-800-MY-APPLE), visit an Apple Retail Store , or find a reseller .
Copyright © 2009 Apple Inc. All rights reserved.
<!-- start of path -->
<!-- end of path -->
发表评论
-
Mac OS: bin/cp: Argument list too long
2013-02-27 14:31 2891#解决:Mac OS bin/cp: Argument lis ... -
XCODE4.3.2与真机联调时,console里输出中文乱码
2012-07-19 13:34 1334修改项目的scheme的info,把debugger由LLDB ... -
Mac OS X Lion 显示隐藏目录
2012-03-29 13:28 0在Termminal中输入如下命令。 chflag ... -
Mac OS X Lion 显示隐藏目录
2012-03-29 13:23 1160在Termminal中输入如下命令。 chflags noh ... -
How do I fix NSURLErrorDomain error -999 in iPhone 3.0 OS
2011-01-22 21:58 2371Comment1####################### ... -
iPhone系统常用文件夹位置
2010-11-01 19:49 13461、【/Applications】 91是装在这里 ... -
定制UISlider样式时注意
2010-10-31 15:21 1945只设球(ThumbImage)就会没有track; 不设球就没 ... -
一个鲜为人知的秘密---Using Apache and PHP on Mac OS X
2010-09-28 01:15 1051NOTE: My MAC OS version is 10.6 ... -
Objective-C中的字符串格式化输出
2010-08-19 14:52 1937Objective-C中的字符串格式化输出 %@ ... -
Focus the "Plus+" for iPhone games' development
2010-08-12 12:58 1077location of website: http://plu ... -
ngmoco:) 关注iPhone游戏开发商ngmoco:)
2010-08-12 12:42 1149Website Location: http://www.ng ... -
Is there a better way to handle HTTP error statuses?
2010-05-20 19:04 1504if ([response respondsToSelecto ... -
Install MYSQL in MAC OS X 10.5.8
2010-03-30 16:09 18051)Download MYSQL named mysql-6. ... -
Vertical UISlider in iPhone dev
2010-01-06 20:49 1894Referenced from : http://www.ip ... -
Shell Script Programming
2009-12-19 01:58 997Refrenced from: http://user.it. ... -
Introduction to The Objective-C Programming Language
2009-12-19 01:56 1490Refenced from : http://develope ... -
Introduction to Open Source Scripting on Mac OS X
2009-12-19 01:10 1827From : http://developer.apple.c ... -
Shell tutorial provided by Apple.
2009-12-13 01:33 1025Referenced from http://develope ... -
TextMate Bundle for Git
2009-12-13 01:18 1299The article I referenced from i ... -
Installing git (OSX)
2009-12-11 13:10 1299Installing git (OSX) http ...
相关推荐
Objective-C是C语言的一种超集,这意味着所有有效的C代码都是有效的Objective-C代码。Objective-C在C语言的基础上添加了面向对象的特性,使得开发者能够更加灵活地管理和组织代码。例如,Objective-C允许开发者定义...
在学习Objective-C时,推荐书籍和资源有《Programming in Objective-C 2.0》、《Learning Objective-C 2.0》等,这些书籍可以帮助快速入门,并深入理解Objective-C的特性。同时,对于Objective-C的内存管理,特别是...
Learn Java for Android Development, 3rd Edition, is an update of a strong selling book that now includes a primer on Android app development (in Chapter 1 and Appendix C, which is distributed in the ...
Learn Java for Android Development, Third Edition, is an update of a strong selling book that now includes a primer on Android app development (in Chapter 1 and Appendix C, which is distributed in the...
Chapter 11 Graph Processing with Massive Datasets: A Kel Primer Chapter Big Data Applications Chapter 12 HPCC Systems for Cyber Security Analytics Chapter 13 Social Network Analytics: Hidden and ...