
常用代码
北京-AK1
这个作者很懒,什么都没留下…
展开
-
(图片显示加边框)
我觉得可以在uiimageview的layer上做文章。如下:self.imageView.layer.borderColor = [UIColorwhiteColor].CGColor;self.imageView.layer.borderWidth = 4;原创 2012-06-05 01:53:41 · 568 阅读 · 0 评论 -
常用代码笔记-持续更新
一,蛇型排n格图精灵//LatticeImage-(void)LatticeImage:(NSArray *)imageArray_ firstImagePoint:(CGPoint) firstImagePoint_ ColumnStep:(float)ColumnStep_ LineStep:(float)linestep_{ for(int i=0; i<imageArray_原创 2012-05-27 19:48:32 · 26681 阅读 · 1 评论 -
关于 nsstring 包含,插入问题
NSString * fileName = @"bbbbbaaaabbbb.jpg"; NSString * seachName = @"工"; NSRange range = [fileName rangeOfString:seachName]; if (range.location != NSNotFound)原创 2012-10-20 00:00:02 · 1147 阅读 · 0 评论 -
判定系统版本。
double version = [[UIDevice currentDevice].systemVersion doubleValue];//判定系统版本。原创 2012-10-29 10:36:33 · 673 阅读 · 0 评论 -
错误描述: 证书一切正常!但是上传时仍然出现下面错误
Xcode 4.3.2错误描述: 证书一切正常!但是上传时仍然出现下面错误!Application failed codesign verification. The signature was invalid,contains disallowed entitlements,or it was not signed with an iPhone Distribution Certif原创 2012-07-01 03:11:36 · 3977 阅读 · 0 评论 -
利用UIPrintPageRenderer将html转换成pdf
Boss让我调查一下把html转换成PDF的方法,google之,有很多,都是用webview加载,截屏,转换。于是去向Boss报告,结果他说这样转换成的pdf是纯图片的,不能对文本进行操作了,达不到想要的效果。无奈,继续google。结果,再一次领略了stackoverflow的强大,最终找到一个解决方案:http://stackoverflow.com/q/9528658/966127转载 2012-07-11 05:01:40 · 2180 阅读 · 0 评论 -
改变键盘的颜色
1.只有这2种数字键盘才有效果。UIKeyboardTypeNumberPad,UIKeyboardTypePhonePad2. 。keyboardAppearance = UIKeyboardAppearanceAlert - (void)textViewDidBeginEditing:(UITextView *)textView{ NSArray *ws = [[UI原创 2012-06-17 12:55:35 · 498 阅读 · 0 评论 -
全屏图片
-(void)noshow{ [btnremoveFromSuperview]; }-(void)show{ btn= [[UIButtonalloc]initWithFrame:CGRectMake(0,0,320,480)]; [btnsetTitle:@""forState:UIC原创 2012-06-05 01:52:56 · 631 阅读 · 0 评论 -
UILabel根据字符 得到高度同时适应于uitableview的cell
NSString*cellText =[str8mutableCopy]; UIFont*cellFont = [UIFontfontWithName:@"Helvetica"size:14]; CGSizeconstraintSize =CGSizeMake(240.0f,MAXFLOAT); CGSizelabelSize = [cellTextsiz原创 2012-06-05 01:52:16 · 627 阅读 · 0 评论 -
XCodeGhost 病毒检查方法
1, 看 电脑中没有没这个文件 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/Library/Frameworks/CoreServices.framework/ ,如果 有就是中招了。2,Target->Build Setting->Search Paths->Fra原创 2015-09-19 16:30:34 · 1067 阅读 · 0 评论