码迷,mamicode.com
首页 >  
搜索关键字:uibutton    ( 1178个结果
UIScreen,UIFont,UIColor,UIView,UIButton等总结
6.1UIScreen//屏幕的宽度CGFloatscreenW = [UIScreenmainScreen].bounds.size.width;6.2UIFont+ (UIFont *)systemFontOfSize:(CGFloat)fontSize;系统默认字体+ (UIFont *)bo...
分类:其他好文   时间:2015-12-18 21:08:53    阅读次数:209
线程和NSThread 、 NSOperation
1 使用NSThread实现打地鼠1.1 问题NSThread是ios提供的轻量级的多线程解决方案,但是需要自己管理线程的生命周期、线程同步等。本案例使用NSThread实现一个打地鼠的小游戏,在界面随机产生mouse(继承至UIButton),以及点击mouse消失得分等功能,如图-1所示:图-1...
分类:编程语言   时间:2015-12-16 19:34:25    阅读次数:249
UIAlertView与UIActionSheet
1.UIAlertView(警告框)1.1 创建警告框,设置样式- (IBAction)alertView:(UIButton *)sender {//创建button按钮 //创建警告框的实例 //UIAlertView *alert = [[UIAlertView alloc]initWit.....
分类:其他好文   时间:2015-12-16 17:13:15    阅读次数:156
GCD 大中枢派发 简单应用实例
@interface ViewController (){ UIImageView* iv; UIButton* btn; UILabel* lbl;}@end@implementation ViewController- (void)viewDidLoad { [super viewDid...
分类:其他好文   时间:2015-12-14 18:17:46    阅读次数:123
第一次加载应用时的滑动启动页
首先新建一个类:SplashViewController还是直接贴代码: .h文件#import #import "UIButton+Bootstrap.h"@interface SplashViewController : UIViewController{ }//页数量@property ...
分类:其他好文   时间:2015-12-11 14:52:15    阅读次数:227
iOS 获取 UITabViewController 和 UINavigationController 的图标位置
这些图标是放在 UITabBar 和 UINavigationBar 里的。所以只要遍历它们的 subViews,找到类型是 UIButton 的就可以了。所有想获取它们的相对位置很容易。但我有个需求是需要在整个屏幕覆盖一层 UIView,然后在 这些图标旁画一些图案(其实我是在做应用教程)。这时候...
分类:移动开发   时间:2015-12-09 19:12:41    阅读次数:510
动态实时监听文本框中内容的变化
@property (strong, nonatomic) UITextField *iPhoneText;@property (strong, nonatomic) UITextField *passwordText;@property (strong, nonatomic) UIButton *...
分类:其他好文   时间:2015-12-08 20:00:56    阅读次数:136
猫学习IOS(三)UI纯代码UI——图片浏览器
猫分享。必须精品看看效果主要实现相似看新闻的一个界面,不用拖拽,纯代码手工写。 首先分析app能够非常easy知道他这里有两个UILabel一个UIImageView还有两个UIButton定义UIView中的东西@property (nonatomic, strong) UILab...
分类:移动开发   时间:2015-12-08 14:20:41    阅读次数:157
使用UISegementControl实现简易汤姆猫程序
经典汤姆猫~本文使用了UISegementControl来完成, 当然使用UIButton来实现更完美~
分类:其他好文   时间:2015-12-07 22:25:22    阅读次数:245
将cell转化为全屏横屏显示
- (void)fullButtonAction:(UIButton *)sender{ UIWindow *keyWindow = [UIApplication sharedApplication].keyWindow; if ([sender.titleLabel.text isEqualT.....
分类:其他好文   时间:2015-12-07 20:52:53    阅读次数:204
1178条   上一页 1 ... 37 38 39 40 41 ... 118 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!