@interface AppDelegate ()
{
UIView *_containerView;
UILabel *_lable;
CGFloat _fristNum;
CGFloat _secondNum;
NSInteger _tempNum;
NSMutableString *_str;
}
@end...
分类:
其他好文 时间:
2014-08-22 10:58:46
阅读次数:
270
//比较简单的动态效果,仅仅由内到外不能换向,颜色是随机生成的
//随机生成7中颜色
for (int i = 0;i < 7;i++) {
_view = [[UIView alloc]initWithFrame:CGRectMake((20 + i * 20), (114 + i * 20 ),280 - (i * 40) ,280 - (i * 40))];
...
分类:
其他好文 时间:
2014-08-22 10:58:16
阅读次数:
158
- (void)drawLine{
//view是曲线的背景view
UIView *view = [[UIView
alloc]initWithFrame:CGRectMake(10,
0, 300, 300)];
view.backgroundColor = [UIColor
whiteColor];
[self.view
addSu...
分类:
其他好文 时间:
2014-08-22 10:55:07
阅读次数:
150
学习UI编程已经有三四天了,这几天学习了一些初级的视图和控件,比如UIView,UIlabel以及UIButton.,学习UI编程,有一点乐趣就是自己写的代码可以看到效果了。这一点和C语言以及OC区别很大。于是我就尝试做了一个简单的计算器。由于水平有限,计算器的功能仅能计算加减乘除,没有实现连加功能。...
分类:
移动开发 时间:
2014-08-22 00:23:55
阅读次数:
286
目前见过的实现边侧菜单的效果,比较流行的有以下三种:(效果图)
1、菜单栏覆盖在部分主视图上
附上实现该效果的一个不错的源码地址:
http://code4app.com/ios/RNFrostedSidebar/524399706803fa3c33000001
(1)最开始要实现这个效果,我想最简单的方式就是:添加UIView,加上一个self.view大小的子视图,菜单...
分类:
移动开发 时间:
2014-08-22 00:22:45
阅读次数:
244
建立一个类继承自UIView,添加初始化方法完善初始化方法XIB文件需要声明所属类效果图
分类:
其他好文 时间:
2014-08-21 18:56:04
阅读次数:
150
//注:只能实现简单的加减乘除,不可以连续运算#define kButton_Color [UIColor cyanColor]//定义键的背景颜色宏,便于更改颜色@interface YJAppDelegate ()
{
UIView *_containter;
UIButton *_numberButton;
UILabel *_label;
CGFloat n...
分类:
其他好文 时间:
2014-08-21 11:30:14
阅读次数:
605
源代码(.m文件)
#import "ZKJAppDelegate.h"
@interface
ZKJAppDelegate ()
@property (retain,nonatomic)
UIView *containView;
@property (retain,
nonatomic) UIButton *button;
@pr...
分类:
移动开发 时间:
2014-08-21 11:29:04
阅读次数:
427
@interface LTView : UIView
//1.是否采用安全模式
- (void)setSecureEntry:(BOOL)secureEntry;
//2.设置键盘的类型
- (void)setKeyBoardType:(UIKeyboardType)keyBoardType;
//3.设置textField代理
- (void)setDelegate:(id)delegate;
...
分类:
其他好文 时间:
2014-08-21 09:52:33
阅读次数:
232
在练习缩放旋转UIButton控件时,出现点击控件x,y同时增加或者减一定像素,经过查找是xcode5开启了Auto Layout.放大缩小的代码- (IBAction)btnScale:(UIButton *)sender { //动画开始,设置执行时间 [UIView beginAn...
分类:
移动开发 时间:
2014-08-20 22:27:12
阅读次数:
206