Time of Update: 2014-07-08
標籤:objective-c objective-c學習 oc oc中的類
Time of Update: 2014-07-07
標籤:des blog http java 使用 os 儘管蘋果在 iOS 5/ Mac OS X 10.7 開始匯入ARC,利用 Xcode4.2 可以使用該機能。ARC就是自動引用計數,是一項為Objective -
Time of Update: 2014-08-02
標籤:blog http 使用 os strong io for art 轉載自:http://blog.csdn.net/onlyou930/article/details/9299169分類: Obje
Time of Update: 2014-07-30
標籤:style color 使用 檔案 io 資料 cti div Objective-C
Time of Update: 2014-07-28
標籤:style java color 使用 檔案 資料 io 問題 接觸物件導向也有一段時間了,當時是通過C++學習的OOP,後來又接觸到了PHP和Java。每種OOP的語言在物件導向上或多或少都會有不同的地方,現在在學習
Time of Update: 2014-07-28
標籤:style blog http color 使用 strong 檔案 io ---------------------- ASP.Net+Unity開發、.Net培訓、期待與您交流! -------------
Time of Update: 2014-07-28
標籤:style blog http color 使用 strong 資料 io ---------------------- ASP.Net+Unity開發、.Net培訓、期待與您交流! -------------
Time of Update: 2014-07-26
標籤:blog http 使用 os 檔案 art re c 原文地址:http://blog.csdn.net/kindazrael/article/details/8108868在 C 語言中,預先處理代碼
Time of Update: 2014-07-24
標籤:blog http java os 檔案 io 2014 art http://foredoomed.org/blog/2014/02/24/object-modeling-of-objective-c/Objective
Time of Update: 2014-07-22
標籤:檔案 cti re c ar new 屬性定義@interface Nothin : NSObject@property NSString *prop;@end 訪問屬性 Nothin *nothin = [Nothin new]; //get
Time of Update: 2014-07-18
標籤:io cti re c 管理 時間
Time of Update: 2014-07-16
標籤:class sel 發現很多初學者無法區分bool和BOOL及class類型,今天閑來無事,寫個博文做個區分1. bool是C語言的布爾類型,有true和false,BOOL是Objective C 語言的布爾類型,有YES和NO,因為OC可以跟C混編,所以bool和BOOL可以同時出現在代碼中2.
Time of Update: 2014-07-14
標籤:style color strong os art cti 1、複合通過包括作為執行個體變數的的對象指標實現的。 @interface Unicycle : NSObject
Time of Update: 2014-07-11
標籤:objective-c 模組化 擴充 interface xcode Objective-C中的Category(分類)1 Category概念:動態為已經存在的類添加新的行為(方法)2
Time of Update: 2018-12-07
我們知道在Objective-C中,使用@property配合@synthesize可以讓編譯器自動實現getter/setter方法,使用的時候也很方便,可以直接使用對象.屬性的方法調用。NSString* name;NSUInteger age;@property(nonatomic,copy)NSString* name;@property(assign)NSUInteger age;@synthesize name;
Time of Update: 2018-12-07
先來定義一個Human父類定義部分://// Human.h// OOP//// Created by jimmy.yang on 11-2-9.// Copyright 2011 __MyCompanyName__. All rights reserved.//#import <Foundation/Foundation.h>@interface Human : NSObject {BOOL sex;}+(void) toString;-(void)
Time of Update: 2018-12-07
// 初始化鎖對象ticketCondition = [[NSCondition alloc] init];//開始第一個線程。ticketsThreadone = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];[ticketsThreadone setName:@"Thread-1"];[ticketsThreadone start];//開始第二個線程。ticketsThreadtwo =
Time of Update: 2018-12-07
在obj-c的世界中,官方根本沒有"介面"與"泛型"這樣的說法。不過在obj-c中有二個與之接近的概念"非正式協議(interface)"與"正式協議(protocal)"。非正式協議在obj-c中的關鍵字雖然也是interface,但是這個跟c#中的介面(interface)並不完全相同。 回憶一下前面學過的內容,我們定義一個類Sample時,總是會先產生一個Sample.h,代碼如下:#import <Foundation/Foundation.h>@interface
Time of Update: 2018-12-07
對於我們.net開發人員來說,.net為我們提供了自動記憶體管理的機制,我們不需去關心記憶體的管理。但是iphone開發中卻是不能的。這篇文章將簡述一下objective-c的記憶體管理機制和方法和一些特性。 手動的進行記憶體管理
Time of Update: 2018-12-07
objective-c 2.0中增加了一個新的關鍵字@dynamic, 用於定義動態屬性。所謂動態屬性相對於@synthesis,不是由編譯器自動產生setter或者getter,也不是由開發人員自己寫的setter或getter,而是在運行時動態添加的setter和getter。一般我們定義一個屬性都是類似以下方法:@interface Car:NSObject;@property (retain) NSString* name;@end@implement Car;@synthesize