2017-02-28 65 views
0

我試過谷歌這個問題,但沒有找到我在找什麼。ios應用程序代碼中的方括號是什麼(xamarin)

進出口尋找一些代碼示例,xamarin iOS和很經常見面結構是這樣的:

[cell setIndentationLevel:SOME_NUMBER]; 
[cell setIndentationWidth:SOME_OTHER_NUMBER]; 

而且這樣的:

-(NSInteger)tableView:(UITableView *)tableView 
      indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    return intOffset; 
} 

如何使用他們? 它們可以在Xamarin studio中用於iOS應用程序嗎?

+0

請鏈接到你看到xamarin ios的例子。 – weston

+1

這看起來像Objective C. Xamarin工作室使用C#,但是您可以在Objective C中編寫本機綁定,但您首先需要了解它。這不是一個很好的問題,因爲它不是一個編程問題,而且非常開放。請參閱http://stackoverflow.com/help/how-to-ask – bj7

+0

to weston:http://stackoverflow.com/questions/30060373/update-height-constraint-programatically – Vadim

回答

2

這是Objective-C而不是C#。它是一種不同的編程語言。您需要將其「轉換」爲C#才能在您的應用中使用它。 (假設這些都是UITableViewCells),在C#相當於是:

cell.IndentationLevel = SOME_NUMBER; 
cell.IndentationWidth = SOME_OTHER_NUMBER; 

你需要做更多的研究/學習到的Objective-C,C#,和iOS如果你不能夠告訴這兩個之間的區別語言,你想做iOS開發。

+0

謝謝,這就是爲什麼我問這樣的問題。 – Vadim

相關問題