1。按钮的创建。 1. 按钮有下面四种类型: UIButtonType.ContactAdd:前面带“+”图标按钮,默认文字颜色为蓝色,有触摸时的高亮效果 UIButtonType.DetailDisclosure:前面带“!”图标按钮,默认文字颜色为蓝色,有触摸时的高亮效果 UIButtonTyp ...
分类:
编程语言 时间:
2017-08-07 12:03:45
阅读次数:
624
//第一个控制器:显示基础控件 import UIKit class ViewController: UIViewController { var label: UILabel = UILabel() var button: UIButton = UIButton() var imageView: ...
分类:
编程语言 时间:
2017-08-05 10:58:58
阅读次数:
207
- (void)viewDidLoad { UIButton *backItem = [UIButton buttonWithType:UIButtonTypeCustom]; UIBarButtonItem *back = [[UIBarButtonItem alloc] initWithCust ...
分类:
其他好文 时间:
2017-07-28 17:38:01
阅读次数:
158
// button.titleLabel.textAlignment = NSTextAlignmentLeft; 这句无效 button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft; button.tit ...
分类:
移动开发 时间:
2017-07-23 16:41:22
阅读次数:
184
// // MainViewController.m // UI07_导航视图控制器 // // Created by dllo on 15/8/6. // Copyright (c) 2015年 zhozhicheng. All rights reserved. // #import "MainV ...
分类:
移动开发 时间:
2017-07-19 21:48:19
阅读次数:
205
UIButton有的时候须要用代码做样式调整 当中就包含加入阴影 例如以下图 中登陆 button 此时须要考虑对button的layer进行设置 button layer 设置下面几个属性 cornerRadius; shadowOffset shadowOpacity; shadowColor; ...
分类:
其他好文 时间:
2017-07-16 14:57:09
阅读次数:
166
用Object-C写的一个简单的计算机程序,主要学习按钮的action动作。 以下是主界面: 以下代码时界面按钮和ViewController.h连接的地方: - (IBAction)button_0:(UIButton *)sender; - (IBAction)button_dian:(UIBu ...
分类:
移动开发 时间:
2017-07-13 22:00:17
阅读次数:
266
Swift:Pop汉堡包变红叉叉 定义: //状态 var hamburger = true var hamburgerButton : UIButton? var top:UIView? var middle:UIView? var bottom:UIView? //实例化按钮 self.hamb ...
分类:
其他好文 时间:
2017-07-10 10:25:51
阅读次数:
127
.h #import <UIKit/UIKit.h> #import <objc/runtime.h> @interface UIControl (XY) @property (nonatomic, assign) NSTimeInterval fy_acceptEventInterval; @pr ...
分类:
其他好文 时间:
2017-07-03 16:19:47
阅读次数:
185
#pragma mark - 网络请求代理方式(异步) - (IBAction)DelegateButtonDidClicked:(UIButton *)sender { // 1、拼接 urlString,网址里面必须写 http:// NSString *urlString = @"http:/ ...
分类:
移动开发 时间:
2017-07-03 10:15:37
阅读次数:
219