像大部分 linux 用户,我之前用 bash 很多年,期间也有过小的不爽,但一直都忍过来,或者是说没想过这些不爽的地方能解决,比如 cd 到一个深目录时得哐哐猛敲 。这么多年里我也尝试过其他 shell。比如 ksh/tcsh ...
NSString属性什么时候用copy,什么时候用strong
我们在声明一个NSString属性时,对于其内存相关特性,通常有两种选择(基于ARC环境):strong与copy。那这两者有什么区别呢?什么时候该用strong,什么时候该用copy呢?让我们先来看个例子。 示例 我们定义一个类...
UITableViewCell设置内容边框或者圆角边框
ios UITableViewCell设置内容边框或者圆角边框,可以通过自定义视图添加在contentView之上,以达到设置自定义背景的目的,代码如下 UIView *container = [[UIView alloc] initWithFrame:CGRectMake(0,-1,self...
tar解压缩和压缩命令
总有一段时间,总是记不清楚这个命令的用法,或许是参数太多了?还是我没有用心去记忆! 解压 tar -zxvf xxx.tar.gz 压缩 tar cvfz backup.tar.gz /xxx/
UINavigationController左侧返回按钮贴近左边的解决方案
解决UINavigationControll自定义返回按钮的时候图标贴近左边的解决方案,适配代码如下: UIBarButtonItem *leftButtonItem = [[UIBarButtonItem alloc] initWithCustomView:custonButton]; UIBarButtonI...
UITableViewCell分割线左边部分缺少一些的解决方法
-(void)viewDidLayoutSubviews { if ([self.mytableview respondsToSelector:@selector(setSeparatorInset:)]) { [self.mytableview setSeparatorInset:UIEdgeInsetsZero]; } if ([self.my...
iPhone UIButton – image position
I want to move the position of the image and the titleLabel in the UIButton see these code [gradeButton sizeToFit]; gradeButton.titleEdgeInsets = UIEdgeInsetsMake(0, -gradeButton.imageView.frame....
一个人走在路上,风有点大心有点冷
大喜大悲看清自己,大起大落看清朋友 谁能对我没有理由的心疼和不设前提的宽容 即使世界末日了, 你也不会回来我身边了, 不要去欺骗别人,因为你能骗到的人,都是相信你的人。 不要轻易把伤口揭开给不相干的看...
Cocoa 新的依赖管理工具:Carthage
说到 iOS 的依赖管理工具,大家一定首先想到的是 CocoaPods ,不错,CocoaPods 确实是一个很好依赖管理工具,已然成为了 Cocoa 依赖管理的标准,丰富的支持库、文档等等,CocoaPods 相关的文章有很多,这里就不一...
ios利用scheme拉起app
<html> <head> <meta name="viewport" content="width=device-width" /> </head> <body> <h2><a id="applink1" href="timer...
IOS图片展现的两种方法对比
UIImageJPEGRepresentation Returns the data for the specified image in JPEG format. NSData * UIImageJPEGRepresentation ( UIImage *image, CGFloat compressionQuality ); Parameters image The origi...
IOS AutoLayout学习
Autolayout 一、NSLayoutConstraint类 //偏移量 @property CGFloat constant; //优先级 @property UILayoutPriority priority; //"view1.attr1 = view2.attr2 * multiplier + constant" +(id)constraintWi...
iOS 合并.a文件,制作通用静态库
lipo -create SQY/iOS/iphoneos/libGamePlusAPI.a SQY/iOS/iphonesimulator/libGamePlusAPI.a -output SQY/iOS/libGamePus.a 其中SQY/iOS/iphoneos/libGamePlusAPI.a //为真机库。 SQY/iOS/iphonesimulator...