在iphone應(yīng)用開發(fā)時(shí),經(jīng)常用到toolbar,其中的控件通常都是居左,想讓它居中就有點(diǎn)困難。
這里介紹一種方法:
將flexible space bar button item從庫中拖到位于控件左側(cè)的工具欄上,然后將另一個(gè)flexible space bar button item拖到位于控件右側(cè)的工具欄上。當(dāng)我們調(diào)整該工具欄的大小時(shí),這些項(xiàng)目將使分段控件位于工聲明一個(gè)屬性時(shí), 頭文件中:
@interface myclass : nsobject
{
float value;
}
@property float value;
@end
實(shí)現(xiàn)文件中:
@synthesize float value;
@synthesize 指令相當(dāng)于讓編譯器同時(shí)為你實(shí)現(xiàn)getter和setter方法,等同于:
-(float)value;
-(void)setvalue:(float)newvalue;
當(dāng)有一種情況例外,就是當(dāng)屬性是boolean類型時(shí)。
另外,如果你只需要實(shí)現(xiàn)getter或setter中的某一個(gè)方法,那么就不需要使用@synthesize指令,只需要實(shí)現(xiàn)上訴兩個(gè)方法中的其中一個(gè)就可以了。具欄的中心。
更多信息請(qǐng)查看IT技術(shù)專欄