本文主要是介绍7.21 ios自动关联控件,centos systemctl使用,tomcat配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
学习笔记
1.ios自动配控件
学习过程中app出现这个错误
Terminating app due to uncaught exception ‘NSUnknownKeyException’, reason: ‘[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key myBtn.’
Call stack at first throw:
出现原因:
这个问题的root cause是在xib中某个控件已经通过outlet连接到ViewController中的某个变量上了,后来变量删除了,但是这种连接关系没有删除,导致启动时找不到对应的key,抛出上述exception。
解决方法:
xib里的控件的关联去掉在重新关联。
http://www.xuebuyuan.com/1353520.html
ios时间格式化
NSDate *date3 = _mmpic.date;
NSDateFormatter *dateformaterr = [[NSDateFormatter alloc] init];
[dateformaterr setDateFormat:@”YYYY-MM-dd”];
NSString *dateString = [dateformaterr stringFromDate:date3];
NSLog(@”%@”,dateString);
ios datepicker一些方法:
_mmpic.minimumDate = [NSDate dateWithTimeIntervalSinceNow:-24*60*60];
_mmpic.maximumDate = [NSDate dateWithTimeIntervalSinceNow:+24*60*60];
_mmpic.date = [NSDate dateWithTimeIntervalSinceNow:0];
2.一些centos命令
pwd 查看当前完整路径
systemctl start tomcat #启动Tomact
systemctl stop firewalld.service #停止firewall
systemctl restart iptables.service #最后重启防火墙使配置生效
systemctl disable firewalld.service #禁止firewall开机启动
systemctl enable iptables.service #设置防火墙开机启动
centos7、tomcat7的webapp目录:/usr/share/tomcat/webapps
上传war包到tomcat:
scp /dir/hello.war root@127.0.0.1:/usr/share/tomcat/webapps
解压war包:(如果war包上传到tomcat的webapps目录,它会帮你解压缩)
unzip -oq hello.war -d dir
yum install unzip
这篇关于7.21 ios自动关联控件,centos systemctl使用,tomcat配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!