创建线程时候中断在创建线程那个地方了
- (void)startRemote { NSThread *myThread = [[NSThread alloc] initWithTarget:self selector:@selector(mThreadFunc) param:self]; [myThread start]……
真心求教一个iOS堆栈的问题
请问iOS的堆栈概念 和windows的有什么区别么? 另外 – (void)fun { NSString* str = [[NSString alloc] initWithString:@”string”]; NSLog(@”%d”, [str retainCount……
请教一个iphone平台下关于图片压缩的问题
压缩分辨率是有现成接口的。但是请问在不改变大小的情况下进一步的压缩是否有现成的API?即降低图片的色深怎么实现 40分 这些都有现成的API 比如:UIImageJPEGRepresentation等 相比MS的GDI+更好用、更多 解决方法可以先搁置,请问是否确定一定可以实现在不改变大小的情况下进一步的压缩 ……
Xcode4.2 编译问题
#import “ViewController.h” @implementation ViewController -(void)moviePlayerDidFinish:(NSNotification *) aNote{ MPMoviePlayerController*player=[aNote object]; [[……
NSUInteger row = [indexPath row];
我最近在学iphone,【listdata objectAtIndex:row】我就理解为【对象 方法 方法参数】,但是row不是indexPath 的方法啊,这句话怎么理解? NSUInteger row = [indexPath row]; 40分 NSIndexPath在UIKit里增加了row,section两个……
请问如何通过手机获取的经纬度判断当前时区?
rt 10分 Take a look at Geonames.org It””s a free webservice that allow you to get a lot of informations from a long/lat They also provide a free (and open s……