`
文章列表
org.tigris.subversion.javahl.ClientException:Path is not a working copy directorysvn:"d:\test" is not a working copy提示比较明显了,不是工作拷贝,你应该把库中的内容checkout到一个新的目录

手动解crash!

 1:检查.dysm .app .crash文件的一致性。        利用系统自带的dwarfdump --uuid xx.dysm获取符号表的uuid。        特别注意.crash的uuid是Binary Images的第一行,而不是cras文件的第一行的Incident Identifier. 2:  需要找到xcode自带的symbolicatecrash文件 然后执行symbolicatecrash .crash .dysm > result.crash     A:注意最后是箭头     B:  find /Applications/Xcode.app/ ...
每个iPhone或iPod Touch都有一个唯一的设备标识符(UUID),由40个字符或数字构成。类似于,1efb55db0b545766ed940db8c32a65b37cc06ae5。 但在xcode8之后通过window-organizer 无法获取到UUID了。 itunes也找不到,我是通过Itools -- 更多  获取到UUID的。如图:  
4个基本Spotlight快捷键:-打开Spotlight菜单:Control+空格-在Finder中打开Spotlight:Command+Option+空格-清空Spotlight搜索框:ESC-关闭Spotlight菜单:ESC按两次7个Spotlight使用&导航快捷键:-打开第一个搜索项目:回车

种cookie

    博客分类:
  • oc
UIwebview 需要自己种植cookie 含域。  

私有api检测

    博客分类:
  • oc
可以搜索performselector的参数,看有没有拼出来的selector 另外搜索extern C的函数声明,看是否有函数没有定义但是有调用

ios 学习地址

    博客分类:
  • oc
https://github.com/Aufree/trip-to-iOS

高斯模糊

    博客分类:
  • oc
- (UIImage *)blurImageFromBackGround { //parentView是要生成模糊背景的view UIGraphicsBeginImageContext(self.parentView.bounds.size); [self.parentView.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage * img = UIGraphicsGetImageFromCurrentImageContext(); UIGraphi ...
如何判断当前系统大于ios5 或者ios6?
离线push 原理  调试?
现在看的有点混乱。大概知道 在interface中声明的是实例变量,如果是公共的就可以被外部访问。那和implementation 中什么的变量区别在哪里呢?

iOS 截屏

    博客分类:
  • oc
+ (UIImage *)getImageOfView:(UIView *)view { UIImage *screenImage; // UIWindow *screenWindow = [[UIApplication sharedApplication] keyWindow]; UIGraphicsBeginImageContextWithOptions(view.bounds.size, NO, 0.0); SEL aSelector = NSSelectorFromString(@"drawViewHierarchyInRect:aft ...

isKindClass isNumberClass

    博客分类:
  • oc
isMemberOfClass 该方法是用来判断是否是该类的实例,父类不参与,与isKindOfClass区别,但是小弟有个疑问,为什么用系统的某些类调用这个方法的时候却不好使? NSMutableArray * mutablearray = [[NSMutableArray alloc] init]; 02. 03. if ([mutablearray isMemberOfClass:[NSMutableArray class]]) { 04. 05. NSLog(@"yes"); 06. 07. } 08. 09. ...

备忘oc

    博客分类:
  • oc
CFAbsoluteTimeGetCurrent *uin NSInteger 1819045699 1819045699 setNeedsDisplay + (NSInteger)getCurrentVIPLevel { if ([[QZoneUserSetting GetInstance] getQzoneVipLevel] > 0) { return [[QZoneUserSetting GetInstance] getQzoneVipLevel]; } //开通黄钻 level为1初始化为1 ...

OC 学习备忘

    博客分类:
  • oc
1:居中布局 label.center = CGPointMake(CGRectGetMidX(window.bounds), CGRectGetMidY(window.bounds)); 2:设备检测 if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) { return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown); } else { re ...
Global site tag (gtag.js) - Google Analytics