- 博客(46)
- 资源 (1)
- 收藏
- 关注
原创 修改linux服务器登录密码永久性
1.查询当前密码到期时间Password expires 就是本次密码到期时间2.修改 chage -M 9999 root3.再次查看密码有效时间这种never就说明修改生效了
2021-09-24 16:14:13
543
原创 linux防火墙开启无法访问tomcat
根据排查,是Centos7的防火墙拦截了tomcat访问的8080端口。可以通过关闭防火墙来实现Tomcat访问,但是这种方法并不安全。通过开放centos7防火墙的端口: ##Add firewall-cmd --permanent --zone=public--add-port=8080/tcp ##Reload...
2019-12-07 22:09:11
682
原创 reason: 'Multiplier is not finite! That's illegal. multiplier:nan' *** First throw call stack:
reason: 'Multiplier is not finite! That's illegal. multiplier:nan'*** First throw call stack:0作为除数出现的bug
2019-10-19 17:02:28
1950
3
原创 linux常用命令
解压: tar -xzvf file.tar.gz解压: tar -vxf file.tar.gz查看进程 ps -ef |grep nginx历史命令:history重命名: mv 文件名 新文件名移动: mv 文件名 路径创建文件夹 mkdir 显示行...
2019-09-04 13:39:23
571
原创 java异常总结
1.NullPointerException 空指针异常2.FileNotFoundException 找不到文件3.ArrayIndexOutOfBoundsException 数组下标越界4.NumberFormatException Integ...
2019-03-16 00:46:37
119
原创 MAC版eclipse开发工具快捷键整理
1.command + d 快速删除一行2.command + shift + O 整理包,去掉多余的import语句,补足未导入的包3.command + n 快速创建一个项目、类、接口4.command + control + F 界面最大化与还原5.command...
2019-02-03 00:13:37
424
原创 iOS配置PCH文件
1.手动创建PCH文件或者导入一个完善的pch文件进行配置2.TARGETS Build Settings 中搜索prefix
2019-01-04 10:35:29
2733
原创 MAC隐藏文件的显示与隐藏
第一步:打开「终端」应用程序。第二步:输入如下命令:defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder第三步:按下「Return」键确认。现在你将会在 Finder 窗口中看到那些隐藏的文件和文件夹了。如果你想再次隐藏原本的隐藏文件和文件夹的话,将上述命令替换成defaults...
2018-12-18 17:03:32
346
原创 Xcode配置码云
1、首先在码云创建账号,并且创建项目2、创建成功以后,在点击克隆/复制按钮,复制下载链接3、在终端中,cd到桌面,执行命令git clone ~~~git clone 后面跟的是你刚刚复制的链接4、命令行执行完毕之后,会在桌面下载下我们刚在码云创建的项目,打开文件夹,会有以下如图5、然后将我们项目里的文件拖进来,一定要注意,这里我们拖进来的是项目里的文件而不是吧...
2018-12-18 17:00:07
1182
原创 appStore上线拒绝
2.1 - Performance - App Completeness Your app or its metadata does not appear to include final content. Specifically, your app contains placeholder content in the screenshots and the binary.Next St...
2018-07-21 16:49:49
1504
原创 ERROR ITMS-90062
ERROR ITMS-90062: "This bundle is invalid. The value for key CFBundleShortVersionString [1.2.1] in the Info.plist file must contain a higher version than that of the previously approved version [1.3].
2018-04-27 00:51:17
1660
原创 Xcode Simulator删除多余
sudo rm -rf /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 8.4.simruntime
2018-04-22 01:04:36
4651
原创 AFNetWorking网络请求,URL中带有中文 crash
问题描述:AFNetWorking网络请求,URL中带有中文 crashreason: 'Invalid parameter not satisfying: URLString'解决方案:NSString *URL = [URLStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
2018-01-11 10:12:51
1047
原创 iOS列表删除数据crash
reason: 'Invalid update: invalid number of sections. The number of sections contained in the table view after the update (8) must be equal to the number of sections contained in the table view befor
2017-12-05 16:55:33
406
原创 package Manager
1.控制台输入 curl -fsSL https://raw.github.com/supermarin/Alcatraz/master/Scripts/install.sh | sh2.重新启动Xcode 点击budle3.点击Xcode ---> Window ---> Package Manager完成了
2016-01-26 23:25:31
333
原创 ios生命周期
1.view即将显示- (void) viewWillAppear:(Bool)animated {}2.view完成显示- (void) viewDidAppear:(Bool)animated {}3.view即将消失- (void) viewWillDisappear:(Bool)animated {}4.view真的消失- (void) viewDidD
2016-01-25 23:55:02
326
原创 storyBoard
1.//从storyboard获取控制器 UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"test" bundle:nil];2.//获取storyboard的第一个控制器 UIViewController *vc = [storyboard instantiateInitialView
2016-01-20 23:25:12
299
原创 iOS 宏
1.调试模式打印,上线模式不打印#ifdef DEBUG#define HMLog(...) NSLog(__VA_ARGS__)#else#define HMLog(...)#endif2.
2016-01-19 00:32:34
266
原创 iOS Info.plist文件
1.Bundle display name ------>app应用明恒2.Bundel identifier ------->应用程序唯一标示,以com.chuan (公司的反域名的形式出现)3.Bundel version ------->App版本,用于苹果应用商店升级使用
2016-01-19 00:15:56
290
原创 iOS中UITextField
1.textField的自定义键盘self.textField.inputView = myView;//设置键盘的工具条 self.birthdayField.inputAccessoryView = myView;
2016-01-16 09:25:46
256
原创 ios数据持久化
1.保存全程的用户信息 设置信息 NSUserDefaults *Defaults = [NSUserDefaults standardUserDefaults]; [Defaults setObject:userID forKey:@"userId"]; [Defaults setObject:pho
2016-01-15 14:14:19
234
原创 iOS pickerView
1.有几组- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView2.每组有几行- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component3.显示内容
2016-01-13 23:11:44
395
原创 iOS状态栏
1.修改状态栏的颜色[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];但是这种方法在iOS 9.0中已经不让用了方法二:1.在Infor.plist中添加Status bar style 设置为UIStatusBarStyleLightConte
2015-12-22 17:02:02
310
原创 iOS联网和授权问题
1.写百度地图时,实现BMKGeneralDelegate中的2个代理方法时,报CFNetwork SSLHandshake failed (-9824)NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9824)网络连接:onGetNe
2015-12-09 14:06:44
855
原创 iOS拨打电话
#pragma mark -- 拨打电话- (void)call:(UIButton *)button { UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"温馨提示" message:@"您确定要拨打该号码吗?" preferredStyle:UIAlertControllerSty
2015-12-08 00:01:20
330
原创 iOS键盘操作
1.点击空白区域收起键盘- (void)touchesBegan:(NSSetUITouch *> *)touches withEvent:(UIEvent *)event { [self.viewendEditing:YES];}
2015-12-07 14:36:42
294
原创 iOS中UILabel属性
1.设置文字大小self.label.font = [UIFontsystemFontOfSize: 12];2.设置字体颜色self.label.textColor = [UIColorredColor];3.隐藏属性self.label.hidden = YES;4.多行显示self.label.numberOfLines = 0;
2015-12-07 11:24:49
249
原创 iOS中tableView
1.取消每个Cell之间的分隔线self.tableView.separatorStyle =UITableViewCellAccessoryNone;2.取消可以选择Cellself.tableView.allowsSelection =NO;3.设置整个tableView的向下左右位置self.tableView.contentInset =UIEdge
2015-12-07 08:42:32
342
原创 iOS中加载XIB后,控件的大小发生变化
加载XIB self.tableView.tableFooterView= [[[NSBundle mainBundle]loadNibNamed:@"LXHtgFootView"owner:niloptions:nil]lastObject]; 在XIB中设置各个控件的大小属性后,在运行的时候控件的大小发生了变动解决方案:
2015-11-24 14:06:36
5468
原创 iOS中设置scrollView的偏移量(开始的位置)
self.scrollView.contentOffset = CGPointMake(100, 100);
2015-11-12 22:15:31
6654
原创 *** Please tell me who you are.
Xcode6在创建工程后:*** Please tell me who you are.Rungit config --global user.email "you@example.com"git config --global user.name "Your Name"to set your account's default identity.
2015-08-24 20:20:28
1125
原创 IOS中关闭滚动条
self.scrollView.showsHorizontalScrollIndicator =NO; self.scrollView.showsVerticalScrollIndicator =NO;
2015-07-26 23:08:34
1417
原创 Xcode使用手册
TextFiled: Clear Button : Appears while editing 说明:在TextFiled输入内容后,输入框后面有“X” 号,删除所有输入的内容
2015-07-20 23:46:35
1436
原创 Oracle11g安装
1.下载Oracle 11g R2 for Windows版本,下载地址如下 官方网站: http://download.oracle.com/otn/nt/oracle11g/112010/win32_11gR2_database_1of2.zip http://downlo
2014-10-14 15:09:36
517
PLSQL_DeveloperX64
2014-10-14
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人