添加MobileCoreServices.framework //引用头文件 #import <MobileCoreServices/MobileCoreServices.h> //修改按钮事件 -(void)clickModifyBtn:(UIButton *)btn { UIActionShee ...
分类:
Web程序 时间:
2016-03-28 18:42:46
阅读次数:
294
在iOS开发过程中,有时需要连接网络。当访问请求,检测到网络不可用时,需要提示用户手动进行设置网络并告知用户操作路径设置可用的网络。 只需一行代码即可实现: - (void)viewDidLoad { [super viewDidLoad]; UIButton *button = [UIButton ...
分类:
移动开发 时间:
2016-03-28 11:49:42
阅读次数:
152
一 控件 1.屏幕上的所有UI元素都叫做控件(也有叫做视图、组件)比如按钮(UIButton)、文本(UILabel)都是控件. 2.控件的共同属性有哪些? 尺寸,位置,背景色 3. 苹果将控件的共同属性都抽取到父类UIView中 所有的控件最终都继承自UIView UIButton、UILabel ...
分类:
其他好文 时间:
2016-03-27 01:27:56
阅读次数:
135
一 控件 1.屏幕上的所有UI元素都叫做控件(也有叫做视图、组件)比如按钮(UIButton)、文本(UILabel)都是控件. 2.控件的共同属性有哪些? 尺寸,位置,背景色 3. 苹果将控件的共同属性都抽取到父类UIView中 所有的控件最终都继承自UIView UIButton、UILabel ...
分类:
其他好文 时间:
2016-03-26 23:43:21
阅读次数:
221
** 设置内容距btn边框距离 **/ btn.contentEdgeInsets = UIEdgeInsetsMake(0, 0, 0, 0); /** 将label和imageView看成一个整体 比如将imageview放到label后面 则需要计算 imageview与label相对的位置
分类:
其他好文 时间:
2016-03-17 19:08:57
阅读次数:
145
//声明一个文本框和一个按钮 @property(strong,nonatomic)UITextField *textName; @property(strong,nonatomic)UIButton *button; ViewController.m - (void)viewDidLoad { [
分类:
移动开发 时间:
2016-03-15 23:40:05
阅读次数:
526
import UIKit class ViewController: UIViewController { //声明一个btn var exampleBtn : UIButton! override func viewDidLoad() {
分类:
移动开发 时间:
2016-03-15 12:16:12
阅读次数:
177
1.添加代理UIImagePickerControllerDelegate 2.设置点击跳转事件 - (IBAction)picButton:(UIButton *)sender { NSLog(@"我的相册"); if([UIImagePickerController isSour
分类:
移动开发 时间:
2016-03-14 18:44:52
阅读次数:
211
1、首先在自定义的cell中,创建两个代理方法 @protocol shopCartDelegate <NSObject> -(void)shopCartDelegate:(ShopCartCell *)cell WithBtn:(UIButton *)btn; -(void)shopCartDel
分类:
其他好文 时间:
2016-03-14 18:31:00
阅读次数:
205
一些常见的属性的方法 UIButton * getVerificationCodeBtn = (UIButton *)[cell.contentView viewWithTag:102]; getVerificationCodeBtn.cornerRadius = 15;//圆角 getVerifi
分类:
其他好文 时间:
2016-03-11 22:17:25
阅读次数:
118