使用三个UIButton实现无限轮播:https://github.com/LXfeiYu/LXCarouselImages.git 功能: 1.可以选择开启和关闭定时器 2.有点击事件 使用方法: 点击事件 ...
分类:
编程语言 时间:
2016-12-22 11:12:55
阅读次数:
186
//UI界面代码 import UIKit class CameraView: UIView { var cameraButton : UIButton! var photoButton : UIButton! var image : UIImageView! override init(frame ...
分类:
编程语言 时间:
2016-12-17 17:13:21
阅读次数:
321
在iOS开发过程中经常需要通过网络请求加载图片,有时,需要在创建UIImageView或UIButton来显示图片之前需要提前知道图片的尺寸,根据图片尺寸创建对应大小的控件。但是对于网络图片来说,要想通过最优的方法获得尺寸就略微有点困难,大体思路就是下面这种: 如果有使用SDWebImage,则首先 ...
分类:
移动开发 时间:
2016-12-09 19:02:15
阅读次数:
316
iOS 按钮倒计时功能, 建议把按钮换成label,这样会避免读秒时闪烁 ...
分类:
移动开发 时间:
2016-12-09 11:43:35
阅读次数:
254
// 获取密码field的X按钮 UIButton *passwordBtn = [_passwordField valueForKey:@"_clearButton"]; // 修改按钮图片 [passwordBtn setImage:[UIImage imageNamed:@"login_che ...
分类:
其他好文 时间:
2016-12-05 17:07:21
阅读次数:
270
UITableView cell自定义头文件:shopCell.h#import <UIKit/UIKit.h>@interface shopCell : UITableViewCell@property (strong, nonatomic) UIImageView *image;@propert ...
分类:
移动开发 时间:
2016-12-05 11:48:17
阅读次数:
221
@UI方面 1 UILabel如果没有text内容,那么无论你怎么设置背景色都没用 UIButton就都可以用 2使用了新控件:UIStackView 使用步骤: //1创建 _horizontalStackView = [[UIStackView alloc] init]; //2设置轴线方向,对 ...
分类:
其他好文 时间:
2016-12-02 18:57:08
阅读次数:
207
新建一个UIButton的category .h .m 然后引入这个category,直接用UIButton就OK了 ...
分类:
移动开发 时间:
2016-11-30 14:45:55
阅读次数:
171
很多次,系统默认的UIButton不能满足需求,每次都是查了很多资料,最后还是用最复杂的方式来修改button的标题和图片的位置,今天,花些时间来梳理一下这方面的知识... UIButton的默认布局是:title在右,image在左; 很多时候我们需要的是title在左边,或者title在下面,这 ...
分类:
移动开发 时间:
2016-11-29 09:57:28
阅读次数:
342
1、使用场合 UIImageView:如果仅仅是为了显示图片,不需要监听图片的点击事件 UIButton:既要显示图片,又要监听图片等点击事件 2、相同点 都能显示图片 3、不同点 UIButton能处理点击事件,UIImageView不能处理点击事件 UIButton既能显示图片,又能显示文字 U ...
分类:
移动开发 时间:
2016-11-28 08:44:07
阅读次数:
191