iOS
飘摇的小帆船
凑合着生活
展开
-
解决headerView 的resize问题
[UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:0.3]; [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; // beginUpdates and en原创 2013-08-22 14:36:28 · 652 阅读 · 0 评论 -
解决相册图片旋转的问题
ALAsset *asset = [self.AssetArray objectAtIndex:i]; UIImage *image = [[UIImage allocinitWithCGImage:asset.defaultRepresentation.fullResolutionImage scale:1 orientation:(UIImageOrientation)asse原创 2014-07-20 22:08:25 · 864 阅读 · 1 评论 -
UIImageView的使用
UIImageView * view = [[UIImageView alloc]initWithFrame:CGRectMake(100, 300, 50, 50)]; [view.layer setCornerRadius:CGRectGetHeight(view.bounds)/2]; view.layer.borderColor = [UIColor blueC原创 2014-04-16 22:32:46 · 502 阅读 · 0 评论 -
ios 启动程序时隐藏状态栏,启动后显示状态栏
1、在info.plist里面 Status bar is initially hidden 设置为 YES 2、在appDelagate里面 设置 [application setStatusBarHidden:NO withAnimation:UIStatusBarAnimationFade]。原创 2013-12-10 11:39:42 · 552 阅读 · 0 评论 -
IOS 自动打包
最近一直在研究ios的自动打包过程,现在把研究过程分享一下: 普通打包一共三步,网上介绍的比较详细,先写下来: 1,xcodebuild -target discus clean 清理 2,xcodebuild -target xxxx CODE_SIGN_IDENTITY="iPhone Distribution:aaaa" 编译 xxxx=工程名称 aaaa=发原创 2013-11-26 19:15:55 · 808 阅读 · 0 评论 -
关于UITapGestureRecognizer屏蔽Button的处理
解决方法1:设置UITapGestureRecognizer对象的cancelsTouchesInView属性为NO 解决方法2:用代理,UIGestureRecognizerDelegate 当一个事件判定为是一个手势时,先进入手势代理方法。该方法中判断点击的视图是不是button 如果是button则返回NO,手势不响应该事转载 2013-11-09 14:11:37 · 559 阅读 · 0 评论 -
UIBUTTON 拉伸方法
_registerBt = [[UIButton alloc]initWithFrame:CGRectMake(120, InterfaceHeight-35-20, 80, 35)]; UIImage * image = [UIImage imageNamed:@"OpBigBtn.png"]; image = [image resizableIm原创 2013-10-28 17:35:33 · 527 阅读 · 0 评论 -
解决error: PCH file built from a different branch ((clang-425.0.27)) than the compiler ((clang-425.0.2
clean 一下即可。。。原创 2013-08-22 15:21:52 · 641 阅读 · 0 评论 -
解决 非arc使用arc类库
选中工程->TARGETS->相应的target然后选中右侧的“Build Phases”,向下就找到“Compile Sources”了。 如何在未使用arc的工程中引入一个使用了arc特性的文件:对相应的文件添加:-fobjc-arc参数原创 2013-08-22 14:34:49 · 435 阅读 · 0 评论 -
Xcode添加字体库
添加自定义字体的方法 1) 先需要一个.ttf的自体库,可以百度搜索字体库下载 2)把这个文件添加到工程里面 3)工程plist中添加Fonts provided by application一项,项目中添加你的文件名,如:felt.ttf 4)添加成功后,就可以使用啦。但是我只拿到这个库,并不清楚fontname。用下面这段代码,打印出来系统可用字体。转载 2013-08-22 17:46:06 · 1073 阅读 · 0 评论 -
非自定义tabbar显示全图片方法
UITabBarItem * itemA = [[[UITabBarItem alloc]initWithTitle:@"" image:nil tag:1] autorelease]; UITabBarItem * itemB = [[[UITabBarItem alloc]initWithTitle:@"" image:nil tag:2] autorelease原创 2013-08-22 14:42:21 · 912 阅读 · 0 评论 -
添加ASI
1.下载asihttprequest 2. 把Classes里的文件,拖到XCode中 External/Reachbility也拖进去 ->这是Apple 官方用来检查网络链接是否正常的类库 3.导入框架 SystemConfiguration.framework MobileCoreServices.framework CoreGraphics.framework CFNetw转载 2013-08-22 14:38:51 · 623 阅读 · 0 评论 -
UISrollView 的使用
- (void)setContentOffset:(CGPoint)contentOffset animated:(BOOL)animated; // animate at constant velocity to new offset - (void)scrollRectToVisible:(CGRect)rect animated:(BOOL)animated;原创 2014-07-20 21:54:03 · 501 阅读 · 0 评论