摘要: No.3 启动报错 org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'runtimeServiceBean' defined in class path r 阅读全文
posted @ 2019-01-10 13:32 一望无际的大海 阅读(6972) 评论(0) 推荐(0) 编辑
摘要: http://www.iteye.com/blogs/subjects/springmvc-explore 阅读全文
posted @ 2017-04-19 15:22 一望无际的大海 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 1、服务器配置信息 ① 主服务器IP:192.168.1.2 ② 从服务器IP:192.168.1.3 ③ 操作系统:主服务器:Win8,从服务器:windows server 2008 2、主服务器Navicat配置: ① 首先在主服务器上添加一个供从服务器访问主服务器的用户,包括用户信息 ② G 阅读全文
posted @ 2017-02-06 11:15 一望无际的大海 阅读(324) 评论(0) 推荐(0) 编辑
摘要: API:应用程序接口(API:Application Program Interface)应用程序接口(API:application programming interface)是一组定义、程序及协议的集合,通过 API 接口实现计算机软件之间的相互通信。API 的一个主要功能是提供通用功能集。程 阅读全文
posted @ 2016-05-16 10:13 一望无际的大海 阅读(7109) 评论(0) 推荐(0) 编辑
摘要: //创建UIAlertController;初始化UIAlertController 需要使用alertControllerWithTitle UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"编辑英雄" message:nil preferredStyle:UIAlertCont... 阅读全文
posted @ 2016-02-24 14:19 一望无际的大海 阅读(257) 评论(0) 推荐(0) 编辑
摘要: //contentSize、contentInset和contentOffset 是 scrollView三个基本的属性。 // 滚动 self.ScrollView.contentSize =self.imageview.frame.size; //偏移X =0 Y =-74 向下偏移 self.ScrollView.contentOffset =CGPointMake(0,-74); ... 阅读全文
posted @ 2016-01-13 10:20 一望无际的大海 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 1.文本框 设置密码属性:Secure Text Entry 勾选; 设置文本框带清除属性: Clear Button =Is always visible; 默认是不带清除属性:Never appears 设置文本框默认带出文字属性:Placeholder=用户自定义输入; 设置文本框键盘用户输入 阅读全文
posted @ 2015-12-10 17:19 一望无际的大海 阅读(217) 评论(0) 推荐(0) 编辑
摘要: #import "ViewController.h" #import "CZapp.h" //引用模型类 @interface ViewController () @property (nonatomic ,strong) NSArray* apps; //声明数组保存数据 @end @implementation ViewController //懒加载 -(NSArray *)apps... 阅读全文
posted @ 2015-09-23 08:55 一望无际的大海 阅读(221) 评论(0) 推荐(0) 编辑
摘要: @property(nonatomic,strong) NSArray *pic; //创建数组属性 @property(nonatomic,assign) int index; //创建索引属性 @property (strong, nonatomic) IBOutlet UIImageView *imageIcon; //列表上的UIImageView - (void)viewDidL... 阅读全文
posted @ 2015-09-11 08:24 一望无际的大海 阅读(640) 评论(0) 推荐(0) 编辑
摘要: 1.图片设置(平移,缩放,旋转) 创建一个transform属性 阅读全文
posted @ 2015-09-11 08:21 一望无际的大海 阅读(232) 评论(0) 推荐(0) 编辑