syxChina 发表于 2012-12-19 22:17:30

IOS之基本UI控件

<div id="cnblogs_post_body">3.1 Button控件
3.2 开关控件
3.3 滑块控件
3.4 工具栏
3.5 WebView

3.1 Button控件

iPhone的Button控件可以做的很绚丽,Button可以有多种状态:
" Default State
" Highlighted State
" Selected State
" Disabled State
http://images.cnblogs.com/cnblogs_com/syxchina/201209/20120904073227624.pnghttp://images.cnblogs.com/cnblogs_com/syxchina/201209/201209040732272227.png
实现上图的效果:新建ButtonsBackground项目:
ButtonsBackgroundViewController.h文件
<div class="cnblogs_code">@interface ButtonsBackgroundViewController : UIViewController {    UIButton * clearButton;    UIButton * smallButton;}@property (nonatomic, retain) IBOutlet UIButton * clearButton;@property (nonatomic, retain) IBOutlet UIButton * smallButton;- (IBAction) disableBut: (id) sender;@end
页: [1]
查看完整版本: IOS之基本UI控件