1.App名称的修改

许多个人开发者或许会有和我一样的经历,开发一个App途中会想到更合适的名字,这时候变会修改工程名以达到App名称改变的目的,其实你可以一步到位——

在info.plist中添加一个key(Bundle display name),Value就是你需要的新名字,Run后退回主页面,可以看到你的新App名字在这页面上了,是不是很简单?

2.快速查找工程文件

工程大了,常常不记得哪个文件在哪个文件夹的子目录下,或者记得也得不厌其烦地层层打开,可以在导航栏下方Filter中输入文件名可找到(导航栏顶端必须选中第一栏“show the project navigator”),其实我可以这一样——

cmd + shift + O组合键调出Open Quickly窗口,快速查找所需文件。

3.捕捉异常

许多时候我会遇到数组下标越界异常、或者是找不到该方法等常见的简单错误,一时半会不能定位错误,其实我们可以——

在Xcode的导航区,选中“show the Breakpoint navigator”,左下角点击加号,选中“Add Exception Breakpoint”,以后再有类似错误,Xcode能够帮我们扑捉到,Run会被卡住在错误的那一行哦。

4.取沙盒日志

App崩溃闪退,看下沙盒日志是不错的选择,附上导出的方法——

取沙盒日志的方法
1.手机连接Mac电脑,打开Xcode。
2.选择顶栏的 Windows 下的 Devices。
3.在Devices栏下先选择当前连接的手机设备。
4.在 Installed Apps 栏下选择你开发的App(需要取沙盒文件的App)。
然后找到你下载的地方,右击显示包内容,开始查找原因吧。

5.添加标注

代码过多或者隔天继续,很多时候都已经忘记了需添加功能的地方,这时候我们可以使用【// FIXME: 】【// TODO: 】【// MARK: 】等加以标记。

标记之后,我们在当前文件点击源文件上方的一个下拉框,你能查看到所有的属性和方法。其中就有自己标注的内容了。

6.po

po对我来说非常有用的一个指令。在调试的时候,遇到一个想知道的变量,不需要再NSLog后再运行一次,或者移动鼠标点击打印值,只需要在控制台po+变量(+用空格代替),即可即使显示变量值哦。

当你想知道变量A的属性也只是需要

po [A class]

就是那么简单



怎么在不新建一个Cell的情况下调整separaLine的位置?


[js] view plain copy


1. _myTableView.separatorInset = UIEdgeInsetsMake(0, 100, 0, 0);


怎么点击self.view就让键盘收起,需要添加一个tapGestures么?


[js] view plain copy



  1. -
1.  (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event  
2. {  
3.    [self.view endEditing:YES];  
4. }

怎么给每个ViewController设定默认的背景图片?

使用基类啊,少年。

想在代码里改在xib里添加的layoutAttributes,但是怎么用代码找啊?

像拉button一样的拉你的约束.nslayoutattribute也是可以拉线的.

怎么像safari一样滑动的时候隐藏navigationbar?


[js] view plain copy


1. navigationController.hidesBarsOnSwipe = Yes


导航条返回键带的title太讨厌了,怎么让它消失!


[js] view plain copy


    1. [[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(0, -60)  
    2.                                                      forBarMetrics:UIBarMetricsDefault];


    CoreData用起来好烦,语法又臭又长,怎么办?

    MagicRecord

    CollectionView 怎么实现tableview那种悬停的header?

    CSStickyHeaderFlowLayou

    能不能只用一个pan手势来代替UISwipegesture的各个方向?


    [js] view plain copy


    1. - (void)pan:(UIPanGestureRecognizer *)sender  
    2. {  
    3. typedef NS_ENUM(NSUInteger, UIPanGestureRecognizerDirection) {  
    4.     UIPanGestureRecognizerDirectionUndefined,  
    5.     UIPanGestureRecognizerDirectionUp,  
    6.     UIPanGestureRecognizerDirectionDown,  
    7.     UIPanGestureRecognizerDirectionLeft,  
    8.     UIPanGestureRecognizerDirectionRight  
    9. };  
    10. static
    11. switch
    12. case
    13. if
    14.             CGPoint velocity = [sender velocityInView:recognizer.view];  
    15.             BOOL isVerticalGesture = fabs(velocity.y) > fabs(velocity.x);  
    16. if
    17. if
    18.                     direction = UIPanGestureRecognizerDirectionDown;  
    19. else
    20.                     direction = UIPanGestureRecognizerDirectionUp;  
    21.                 }  
    22.             }  
    23. else
    24. if
    25.                     direction = UIPanGestureRecognizerDirectionRight;  
    26. else
    27.                     direction = UIPanGestureRecognizerDirectionLeft;  
    28.                 }  
    29.             }  
    30.         }  
    31. break;  
    32.     }  
    33. case
    34. switch
    35. case
    36.                 [self handleUpwardsGesture:sender];  
    37. break;  
    38.             }  
    39. case
    40.                 [self handleDownwardsGesture:sender];  
    41. break;  
    42.             }  
    43. case
    44.                 [self handleLeftGesture:sender];  
    45. break;  
    46.             }  
    47. case
    48.                 [self handleRightGesture:sender];  
    49. break;  
    50.             }  
    51. default: {  
    52. break;  
    53.             }  
    54.         }  
    55. break;  
    56.     }  
    57. case
    58.         direction = UIPanGestureRecognizerDirectionUndefined;     
    59. break;  
    60.     }  
    61. default:  
    62. break;  
    63. }  
    64. }

    拉伸图片的时候怎么才能让图片不变形?1.UIImage *image = [[UIImage imageNamed:@"xxx"] stretchableImageWithLeftCapWidth:10 topCapHeight:10];

    2.


    怎么播放GIF的时候这么卡,有没有好点的库?

    FlipBoard出品的太适合你了:https://github.com/Flipboard/FLAnimatedImage

    怎么一句话添加上拉刷新?

    https://github.com/samvermette/SVPullToRefresh


    [js] view plain copy



      1. [tableView addPullToRefreshWithActionHandler:^{  
      2. // prepend data to dataSource, insert cells at top of table view
      3. // call [tableView.pullToRefreshView stopAnimating] when done
      4. } position:SVPullToRefreshPositionBottom];


      怎么把tableview里cell的小对勾的颜色改成别的颜色?


      [js] view plain copy



        1. _mTableView.tintColor = [UIColor redColor];



        本来我的statusbar是lightcontent的,结果用UIImagePickerController会导致我的statusbar的样式变成黑色,怎么办?


        [js] view plain copy


        1. - (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated  
        2. {  
        3.     [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];  
        4. }

        怎么把我的navigationbar弄成透明的而不是带模糊的效果?


        [js] view plain copy


        1. [self.navigationBar setBackgroundImage:[UIImage new]  
        2.                          forBarMetrics:UIBarMetricsDefault];  
        3. self.navigationBar.shadowImage = [UIImage new];  
        4. self.navigationBar.translucent = YES;


        怎么改变uitextfield placeholder的颜色和位置?

        继承uitextfield,重写这个方法


        [js] view plain copy


        1. - (void) drawPlaceholderInRect:(CGRect)rect {  
        2.     [[UIColor blueColor] setFill];  
        3.     [self.placeholder drawInRect:rect withFont:self.font lineBreakMode:UILineBreakModeTailTruncation alignment:self.textAlignment];  
        4. }