2012-08-30 44 views
5

我對塊的概念有點家庭但我不知道如何在iOS5中創建它們。任何人都可以提供一個簡單的例子嗎?非常感謝:)ios5中的塊示例

+1

你可以瞭解關於塊的概念,那麼爲什麼你can.t目標C使用 – Ben10

+0

檢查[**這**](http://stackoverflow.com/questions/12176961/what-is-the- SKM提出的問題)。 – Nitish

+0

這裏是你正在尋找 鏈接 http://stackoverflow.com/questions/12176961/what-is-the-purpose-of-using-blocks – SriKanth

回答

4

使用在塊這個簡單的例子..

int multiplier = 7; 
int (^myBlock)(int) = ^(int num) { 
return num * multiplier; 
}; 



NSLog(@"Sum = %d",myBlock(20)); 
Then you will get as 140 
+0

@yuvaraj .......... – Ben10

0

這裏有一個簡單的例子。希望能幫助到你。

​​