日常杂记--1

一、开启http

  1. 在Info.plist中添加NSAppTransportSecurity类型Dictionary

  2. NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为yes

二、配置pch文件

  $(SRCROOT)/MicrogridProject/PrefixHeader.pch

  备注:$(SRCROOT)/工程名称/pch文件

三、修改状态栏颜色

  1、plist
  View controller-based status bar appearance 设置为 NO

  2、修改页面代码

  [UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;

四、修改tableviewcell的选中颜色

        self.selectedBackgroundView = [[UIView alloc] initWithFrame:self.frame];//必须要先初始化以后才可以设置颜色

        self.selectedBackgroundView.backgroundColor =[UIColor redColor];

 五、在worksapce中添加多个工程

  1、

 2、 

原文地址:https://www.cnblogs.com/shizhiliblog/p/8066327.html