上一页 1 ··· 4 5 6 7 8 9 10 下一页

2014年7月30日

摘要: 30多个iOS常用动画,带详细注释1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071... 阅读全文
posted @ 2014-07-30 14:47 恒山之阳 阅读(447) 评论(0) 推荐(0)
摘要: 给视图加上倒影效果123456789101112131415161718const CGFloat kReflectPercent = -0.25f;const CGFloat kReflectOpacity = 0.3f;const CGFloat kReflectDistance = 10.0f... 阅读全文
posted @ 2014-07-30 14:18 恒山之阳 阅读(464) 评论(0) 推荐(0)
摘要: 16进制颜色#e26562与UIColor互转,设置View背景颜色123456789101112131415161718192021222324252627282930313233343536373839404142434445464748- (void)viewDidLoad{[super vi... 阅读全文
posted @ 2014-07-30 14:14 恒山之阳 阅读(192) 评论(0) 推荐(0)
摘要: 可以重写UISearchBar,然后调用layoutSubviews这个方法。1234567891011121314151617- (void)layoutSubviews {UITextField *searchField;NSUInteger numViews = [self.subviews ... 阅读全文
posted @ 2014-07-30 14:11 恒山之阳 阅读(190) 评论(0) 推荐(0)
摘要: 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354//转换图片大小- (UIImage *)reSizeImage:(UIImage *)image t... 阅读全文
posted @ 2014-07-30 14:06 恒山之阳 阅读(228) 评论(0) 推荐(0)
摘要: 通过颜色来生成一个纯色图片12345678910- (UIImage *)buttonImageFromColor:(UIColor *)color{CGRect rect = CGRectMake(0, 0, self.frame.size.width, self.frame.size.heigh... 阅读全文
posted @ 2014-07-30 14:01 恒山之阳 阅读(947) 评论(0) 推荐(0)
摘要: 可以达到文字描一圈白边的效果1234567891011121314151617181920212223//继承UILabel以后重载drawTextInRect- (void)drawTextInRect:(CGRect)rect {CGSize shadowOffset = self.shadow... 阅读全文
posted @ 2014-07-30 13:53 恒山之阳 阅读(572) 评论(0) 推荐(0)
摘要: 123456789101112131415161718192021+ (NSArray*)getAllSystemFonts;{NSMutableArray *array = [[[NSMutableArray alloc] init] autorelease];NSArray* familys =... 阅读全文
posted @ 2014-07-30 13:49 恒山之阳 阅读(543) 评论(0) 推荐(0)
摘要: 这个效果的实现很简单,首先截取需要替换成*号的内容,然后再进行替换123456789//电话号码UILabel *telLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, yy+30, 200, 20)];telLabel.textColor ... 阅读全文
posted @ 2014-07-30 13:47 恒山之阳 阅读(386) 评论(0) 推荐(0)
摘要: 调用方法 把身份证字符串传进来 可返回生日数字12345678910111213141516171819202122232425262728293031323334353637383940-(NSString *)birthdayStrFromIdentityCard:(NSString *)num... 阅读全文
posted @ 2014-07-30 13:40 恒山之阳 阅读(221) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 下一页

导航