- 解决ScrollView滑动卡顿的问题
/** 解决scrollView 滑动卡顿问题 */
[self performSelector:@selector(test1) withObject:nil afterDelay:4 inModes:@[NSDefaultRunLoopMode]];
- 搭建自测服务器
MOCO https://github.com/dreamhead/moco
- 获取IP
http://ip.taobao.com/service/getIpInfo.php?ip=myip
- 删除重用的cell的所有子视图,从而得到一个没有特殊格式的cell,供其他cell重用。
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
}
else
{
//删除cell的所有子视图
while ([cell.contentView.subviews lastObject] != nil)
{
[(UIView*)[cell.contentView.subviews lastObject] removeFromSuperview];
}
}
- 关于copy和MutableCopy
//copy mutablecopy
/**
如果对一不可变对象复制,copy是指针复制(浅拷贝)和mutableCopy就是对象复制(深拷贝)。如果是对可变对象复制,都是深拷贝,但是copy返回的对象是不可变的。
*/
NSString *str = @"admin";
NSString *copyStr = [str copy];//copy 指针复制 浅复制
NSString *mcopyStr = [str mutableCopy];//mutablecopy 对象复制 深度复制 重新分配内存
NSLog(@"%p\n%p\n%p",str,copyStr,mcopyStr);
NSMutableString *mstr = [NSMutableString stringWithString:@"test"];
NSString *str1 = [mstr copy];
NSString *str2 = [mstr mutableCopy];
NSLog(@"%p\n%p\n%p",mstr,str1,str2);
- 最近使用CocoaPods来添加第三方类库,无论是执行pod install还是pod update都卡在了Analyzing dependencies不动
原因在于当执行以上两个命令的时候会升级CocoaPods的spec仓库,加一个参数可以省略这一步,然后速度就会提升不少。加参数的命令如下:
pod install --verbose --no-repo-update
pod update --verbose --no-repo-update
- iOS单例创建
+ (instancetype)shareManager
{
static User *user = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
user = [[User alloc] init];
});
return user;
}
- bounds 和 Frame区别
先看到下面的代码你肯定就明白了一些:
-(CGRect)frame{
return CGRectMake(self.frame.origin.x,self.frame.origin.y,self.frame.size.width,self.frame.size.height);
}
-(CGRect)bounds{
return CGRectMake(0,0,self.frame.size.width,self.frame.size.height);
}
很明显,bounds的原点是(0,0)点(就是view本身的坐标系统,默认永远都是0,0点,除非人为setbounds),而frame的原点却是任意的(相对于父视图中的坐标位置)。
iOS APP 性能优化
同步操作不创建新线程(无论串行还是并发,都是顺序操作)、异步操作创建新线程(串行顺序操作,并发无顺序操作)CGD编程教程
//1 创建串行队列
// dispatch_queue_t que = dispatch_queue_create("", NULL);
//创建一个并发队列
dispatch_queue_t quee = dispatch_queue_create("id", DISPATCH_QUEUE_CONCURRENT);
dispatch_async(quee, ^{
NSLog(@"4:%@",[NSThread currentThread]);
});
dispatch_async(quee, ^{
NSLog(@"5:%@",[NSThread currentThread]);
});
dispatch_async(quee, ^{
NSLog(@"6:%@",[NSThread currentThread]);
});
- 在使用AFNetworking的时候可能会碰到下面的错误
{ status code: 200, headers {
"Content-Length" = 14;
"Content-Type" = "text/plain;charset=utf-8";
Date = "Thu, 22 May 2014 10:37:50 GMT";
Server = "Apache-Coyote/1.1";
"Set-Cookie" ="JSESSIONID=C0DFED60A154557F8386E62AB2A066CE; Path=/FHJRDT";
} }, NSLocalizedDescription=Request failed:unacceptable content-type: text/plain}
解决方法,由于AFNetworking默认acceptableContentTypes为,
self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript", nil];
在初始化的时候设置acceptableContentTypes
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript",@"text/plain", @"text/html", nil];
const 类型 * 变量名:可以改变指针的指向,不能改变指针指向的内容.
类型 * const 变量名:可以改变指针指向的内容,不能改变指针的指向。自定义宏代替NSLog
/* 自定义宏代替NSLog */
#ifdef DEBUG
#define NSLog(FORMAT, ...) fprintf(stderr,"%s:%d\t%s\n",[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);
#else
#define NSLog(FORMAT, ...) nil
#endif
- 删除文件目录下的.svn文件命令
sudo find /Users/pary/Desktop/zf2-app -name ".svn" -exec rm -r {} \;
sudo find 文件路径 -name ".svn" -exec rm -r {} \;
- UINavigationController 返回按钮的文字设置不在屏幕显示
//将返回按钮的文字设置不在屏幕显示
[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(NSIntegerMin, NSIntegerMin) forBarMetrics:UIBarMetricsDefault];
- ARC 、 MRC编译问题
在ARC环境下,使用MRC的文件时 -fno-objc-arc
在MRC环境下,使用ARC文件时,-fobjc-arc
- iOS屏幕截图
+ (UIImage *)screenShotView:(UIView *)view
{
UIImage *imageRet = nil;
if (view)
{
if(UIGraphicsBeginImageContextWithOptions != NULL)
{
//通过调整最后一个参数数值,来设置图片质量
UIGraphicsBeginImageContextWithOptions(view.frame.size, NO, 100.0);
}
else
{
UIGraphicsBeginImageContext(view.frame.size);
}
//获取图像
[view.layer renderInContext:UIGraphicsGetCurrentContext()];
imageRet = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}
return imageRet;
}
tip
scale 数值越大,截图图片质量越高
UIGraphicsBeginImageContextWithOptions
Creates a bitmap-based graphics context with the specified options.
void UIGraphicsBeginImageContextWithOptions(
CGSize size,
BOOL opaque,
CGFloat scale
);
- 设置启动页显示时间
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
[NSThread sleepForTimeInterval:3.0];//设置启动页面时间
return YES;
}
- missing required architecture i386 解决方法
合成静态库文件 将模拟器库文件和真机库文件合并为一个
1、查看支持构架的命令是lipo -info xxxxx.a
2、合并真机和模拟器的库的命令是 lipo -create xxxx_iphoneos.a xxxx_simulator.a -output xxxx.a
lipo -create Release-iphonesimulator/libMAMapKit.a Release-iphoneos/libMAMapKit.a -output libMAMapKit.a
- tableView
- (NSArray *)examples{
if (!_examples) {
_examples = @[
@"Scale Browser, 没有数据源传photos",
@"Fade Browser",
@"Show Signle Browser in Portrait",
@"Scale Browser, 有数据源的用法",
];
}
return _examples;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
UIViewController *viewController = [[NSClassFromString([NSString stringWithFormat:@"Example%ldViewController",indexPath.row+1]) alloc] init];
viewController.title = self.examples[indexPath.row];
[self.navigationController pushViewController:viewController animated:YES];
}