6.1UIScreen//屏幕的宽度CGFloatscreenW = [UIScreenmainScreen].bounds.size.width;6.2UIFont+ (UIFont *)systemFontOfSize:(CGFloat)fontSize;系统默认字体+ (UIFont *)bo...
分类:
其他好文 时间:
2015-12-18 21:08:53
阅读次数:
209
1 使用NSThread实现打地鼠1.1 问题NSThread是ios提供的轻量级的多线程解决方案,但是需要自己管理线程的生命周期、线程同步等。本案例使用NSThread实现一个打地鼠的小游戏,在界面随机产生mouse(继承至UIButton),以及点击mouse消失得分等功能,如图-1所示:图-1...
分类:
编程语言 时间:
2015-12-16 19:34:25
阅读次数:
249
1.UIAlertView(警告框)1.1 创建警告框,设置样式- (IBAction)alertView:(UIButton *)sender {//创建button按钮 //创建警告框的实例 //UIAlertView *alert = [[UIAlertView alloc]initWit.....
分类:
其他好文 时间:
2015-12-16 17:13:15
阅读次数:
156
@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
这些图标是放在 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
猫分享。必须精品看看效果主要实现相似看新闻的一个界面,不用拖拽,纯代码手工写。 首先分析app能够非常easy知道他这里有两个UILabel一个UIImageView还有两个UIButton定义UIView中的东西@property (nonatomic, strong) UILab...
分类:
移动开发 时间:
2015-12-08 14:20:41
阅读次数:
157
经典汤姆猫~本文使用了UISegementControl来完成, 当然使用UIButton来实现更完美~
分类:
其他好文 时间:
2015-12-07 22:25:22
阅读次数:
245
- (void)fullButtonAction:(UIButton *)sender{ UIWindow *keyWindow = [UIApplication sharedApplication].keyWindow; if ([sender.titleLabel.text isEqualT.....
分类:
其他好文 时间:
2015-12-07 20:52:53
阅读次数:
204