1.动画(头部-开始动画)[UIView beginAnimations:nil context:nil];2.设置动画的执行时间[UIView setAnimationDuration:1.0];3.向上移动// CGPoint tempCenter = _btn.center;CGRect te...
分类:
其他好文 时间:
2014-12-05 10:24:44
阅读次数:
189
//
// main.m
// struct
//
// Created by mac on 14-12-2.
// Copyright (c) 2014年
mac. All rights reserved.
//
#import
#pragma mark
基本数据类型----
void
baseType()
{
//unsigned l...
分类:
其他好文 时间:
2014-12-04 20:02:22
阅读次数:
167
实现的效果图:自定义MVButton,继承自UIButton.属性声明如下:@property (nonatomic) CGPoint beginPoint;@property (nonatomic) BOOL dragEnable;//自定义button对触摸事件进行响应- (void)to...
分类:
其他好文 时间:
2014-11-30 13:48:18
阅读次数:
156
@property(nonatomic) CGPoint contentOffset;这个属性用来表示UIScrollView滚动的位置@property(nonatomic) CGSize contentSize;这个属性用来表示UIScrollView内容的尺寸,滚动范围(能滚多远)@prope...
分类:
其他好文 时间:
2014-11-25 23:11:43
阅读次数:
188
NSNumber能够包装基本数据类型称为OC对象,是因为继承了NSValue包装结构体成OC对象1.自带结构体 1 void value() 2 { 3 CGPoint point = CGPointMake(10, 10); 4 NSValue *obj = [NSValue va...
分类:
其他好文 时间:
2014-11-24 20:46:37
阅读次数:
252
环境是xcode4.3首先要弄懂几个基本的概念。一)三个结构体:CGPoint、CGSize、CGRect1. CGPointC代码 /*Points.*/structCGPoint{CGFloatx;CGFloaty;};typedefstructCGPointCGPoint;/* Points....
分类:
移动开发 时间:
2014-11-14 12:21:53
阅读次数:
300
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UITouch *touch = [touches anyObject]; CGPoint pt = [touch locationInView:self.view].....
分类:
其他好文 时间:
2014-11-12 19:38:16
阅读次数:
192
?CGSize contentSize:设置UIScrollView的滚动范围?CGPoint contentOffset:UIScrollView当前滚动的位置?UIEdgeInsets contentInset:增加滚动视图四周的增加滚动范围1.创建 UIScrollView *scrol...
分类:
移动开发 时间:
2014-11-07 11:10:13
阅读次数:
256
重写touchBegin 方法是不行的,在UITableView/UIScrollView解决方案 重写hitTest:withEvent: 在他们的子类中- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event { s...
分类:
其他好文 时间:
2014-11-01 13:20:22
阅读次数:
303
?@property(nonatomic) CGPoint contentOffset; ?这个属性用来表示UIScrollView滚动的位置? ?@property(nonatomic) CGSize contentSize;? ?这个属性用来表示UIScrollView内容的尺寸,滚动范围(能滚多远) ...
分类:
其他好文 时间:
2014-10-30 22:51:14
阅读次数:
276