240 发简信
IP属地:四川
  • Resize,w 360,h 240
    ZFPlayer跳坑比赛

    ZFPlayer使用的很多,作者写的不错,很好用,但是也有跟自己项目不适合的地方,最坑的应该是限制横竖屏,我现在的需求是在WebView里面的播...

  • Resize,w 360,h 240
    Xcode8 警告报错 “xx”is missing from working copy 问题解决

    方法一: Xcode->Preferences->Source->Enable Source Control 勾勾去掉 方法二: Xcode8更...

  • Xcode 工程文件打开不出来, cannot be opened because the project file cannot be parsed.

    get或svn更新代码后,打开xcode工程文件,会出现 xxx..xcodeproj cannot be opened because the...

  • navigationBar.tintColor无效时换个方式

    使用 self.navigationController.navigationBar.tintColor = [UIColor whiteCol...

  • iOS CGContextRef画图

    CGContextRef context = UIGraphicsGetCurrentContext(); //设置上下文 //画一条线 CGC...

  • tabBar显示数字气泡

    NSArray *tabBarItems = self.tabBar.items; UITabBarItem *personCenterTabB...

  • Resize,w 360,h 240
    通过itunes打包ipa

    前提你需要安装了测试证书, 按照下图步骤,123执行 在Products中***.app拖到itunes中,记得先选择-应用,再拖进去 然后生成...

  • OC常用小方法

    字符串判空: if ((value == nil) || value == (NSString *)[NSNull null] || (valu...

  • weakself的多种写法

    // AFNetworking的写法 __weak __typeof(&*self)weakSelf = self; // 我之前一直这么写的 ...