xcode單詞及回調

經過需求選擇架構,架構取決於本身的能力(經驗)受基礎決定。架構就至關於骨骼,邏輯就是基本。邏輯裏面只要是:彙報決策
目標回調  vc回調tapA   (目標動做)
委託回調 (代理回調)含有delegate
一個組件就是一個對象
九種不一樣的方法實現
在開發的過程當中不免會遇到不少的錯誤,但是當看到系統給出的英文時,又不知道是什麼意思。因此這篇文章總結了Xcode中常見的一些英文單詞及詞組,能夠幫助初學的人快速瞭解給出的提示。多練習,就確定能基本掌握。
expression:表達式
assignable:賦值
variable:變量+
redefinition:重複定義
type:類型
conflicting:衝突項
invalid:無效的
conversion:轉換
specifier:說明符
indent:縮進
operands:運算對象、操做數
binary:二進制
expected:指望
logical:邏輯
const :常量
constant:常量
statements:語句
initialization:初始化
condition:條件
increment:增量
index:索引、下標
abbrev:簡寫、縮寫
alias:別名,化名
modified:修改/改進的
parameter:參數
implicit:隱含的
undo:取消
redo:重作
cancel:取消
octal:八進制的
incompatible:不匹配的
duplicate:重複
action:行爲
instance:實例
modify:修改
general:普通的   in general:大致,通常來講
subclass:子類
superclass:父類
inherit:繼承
contents:內容
primitive:原始的
modify:修改
ordered:有序的
collection:集合
dynamic:動態的
querying:查詢
deriving:派生
description:描述,描寫
collection:集合
programmatic:編程的
a set of:一系列、一組
overview :概述
related 相關的
declared in:聲明在...(文件裏)
availability:可用的
framework:框架、類庫
Conforms to:服從....協議
Conforms :服從
dynamic:動態
term:條目
exact:確切的
membership:成員
entry:條目
consists of:由...組成
unique:獨特的、惟一的
determined:決定
conform to:服從,遵守
protocol:協議
distinct:不一樣的、獨特的
addition:添加、增長
literals:字面量
denote:表示,指示
category:類目、分類
concrete:具體的
decouples:解耦
KVC:Key-Value Coding:鍵值對編碼

Getting Numeric Values:得到一個數值
Identifying and Comparing Strings:識別和比較字符串
Replacing Substrings:替換子串
Finding Characters and Substrings:查找字符和子串
Dividing Strings:分割字符串
Combining Strings:拼接字符串
Getting C Strings:獲得c語言的字符串
Getting Characters and Bytes:獲取字符或字節
Getting a String’s Length:獲得字符串的長度
Writing to a File or URL:把內容寫到一個文件或者URL裏
Creating and Initializing a String from a File:從文件裏建立並初始化一個字符串
Deprecated:棄用
Creating and Initializing Strings:建立初始化字符串
tasks:功能
Adopted Protocols:採用的/服從的協議
目標動做回調   委託模式回調     代碼塊兒回調
SEL test = @selector(方法名);
type enum:NSUInieger{
SwitchStateOff,//default
SwitchStateOn,
}SwitchState;
@property(nonatomic,assign,readonly)SwitchState currentState;//定義一個SwitchState類型的currentState(由於SwitchState不是一個類因此後面不用帶星號的指針)
@property(nonatomic,weak)id<SwitchDelegate>delegate;//定義一個遵照協議的委託人反饋給Room
@end
@protocol  SwitchDelegate<NSObject>//當開關狀態改變時,會調用委託人的此方法進行狀態反饋。
-(void)switchD:(SwitchD *)s   didChangeState : (SwitchState)currentState;
@end
房間的聲明文件.h
@interface  Room :NSObject<SwitchDelegate>
@end
房間的實現文件.m
@interface Room ()<SwitchDelegate>
@property(strong,nonatomic)Light *alight;
@property(strong,nonatomic)Switch *aSwitch;
@end
@implementation Room
-(instancetype)init
{
self = [super init];
if(self)
{
self.aLight = [[Light alloc]init];
sekf.aSwitch = [[Switch alloc]init;
//設置開關的委託人爲本身(Room)
self.aSwitch.delegate = self;
}
return self;
}
-(void)switchD:(SwitchD *)s  didChangeState:(SwitchState)currentState
{
if(currentState==SwitchStateOff)
{
[self.aLight   turnOff];
}
else
{
[self.aLight turnOn];
}
}@end
經過上述代碼,能夠看出,當開關狀態改變的時候,開關會調用Room實現的委託方法。經過在委託方法內部的代碼,實現對開關狀態的反饋進行處理。

代碼塊回調(匿名函數)
代碼塊機制
Block變量類型
Block代碼封裝及調用
Block變量對普通變量做用域的影響
Block回調接口使用
肯定block變量的類型有兩個因素:儲存代碼的返回值類型 +儲存代碼的參數         
列表。
沒有返回值沒有輸入參數的block類型。
void(^ varBlock)(void);//變量名位:varblock
有返回值有輸入參數的block代碼
int (^varBlock1)(int  a,int   b);//變量名爲varBlock1代碼類型爲int型,有兩個int型參數
用typedef關鍵字進行重命名,用相對簡單的類型名進行聲明變量
typedef void(^BlockType)(void);
BlockType1  var1 ;//var與varBlock1爲同一類型express

相關文章
相關標籤/搜索