摘要: 输出0-10的四种写法 阅读全文
posted @ 2016-12-06 00:32 Dzs 阅读(264) 评论(0) 推荐(0) 编辑
摘要: DateTime 和 DateTime?前者不允许为空,会有默认值,而DateTime?可以为Null 其他数值型同理! 阅读全文
posted @ 2016-11-18 14:51 Dzs 阅读(689) 评论(0) 推荐(0) 编辑
摘要: 由于在DataGridViewX 中使用了控件DataGridViewCheckBoxXColumn会导致 Anchor属性无效问题化,具体原因未知,建议改换为系统自带的DataGridViewCheckBoxColumn即可正常使用 。 另外参考博友给出的其他主要原因 1 使用DataGridVi 阅读全文
posted @ 2016-10-20 16:20 Dzs 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 1 代碼UIViewController* modalController = [[UIViewController alloc]init];modalController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;moda... 阅读全文
posted @ 2014-10-30 10:32 Dzs 阅读(850) 评论(1) 推荐(0) 编辑
摘要: ios 关于StoryBoard 的简易使用说明http://www.tuicool.com/articles/FNRruy 阅读全文
posted @ 2013-12-19 09:15 Dzs 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 1:备份与导出(注意版本问题) 开始==》运行==》exp UserName/UserPwd@ServerconnectionimpUserName/UserPwd@Serverconnection2:Wsdl(.net 自带工具) 打开.net 命令行wsdl.exe /l:CS /n:MathService /out:FilePath WebserviceUrlPath3:关于JAVA调用.NET WebService的注意点.NET 端需要对方法进行一下内容配置 [SoapRpcMethod(Use = SoapBindingUse.Literal, Action = "Nam 阅读全文
posted @ 2013-05-13 11:35 Dzs 阅读(299) 评论(0) 推荐(0) 编辑
摘要: WGS84坐标转火星坐标(iOS篇):http://blog.csdn.net/terrytan18/article/details/7611267校正IOS的PGS坐标方法:http://blog.csdn.net/terrytan18/article/details/7614454----- C#平面坐标与经纬度转换 http://blog.csdn.net/zzuqqiu/article/details/6112808火星坐标转换为GPS坐标 && C#下的GPS座标纠偏方法(也叫火星座标)http://www.cnblogs.com/nolan022/articles/ 阅读全文
posted @ 2013-03-21 10:14 Dzs 阅读(243) 评论(0) 推荐(0) 编辑
摘要: UIBarButtonItem *backItem=[[UIBarButtonItem alloc]init]; backItem.title=@" "; UIImage *backimage=[[UIImage imageNamed:@"back.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)]; [backItem setBackButtonBackgroundImage:backimage forState:UIControlStateNorma... 阅读全文
posted @ 2013-03-14 18:40 Dzs 阅读(1080) 评论(0) 推荐(0) 编辑
摘要: 5.0前后,对应的调用方法变了参数,而且如果用了5.0以后的方法在低版本上无法使用,而用低版本对用的方法,apple已经不提倡,会有警告出现可以采取对“执行事件”捕捉,来间接的完成兼容性if([selfrespondsToSelector:@selector(dismissViewControllerAnimated:animated:completion:)]){[selfdismissViewControllerAnimated:YEScompletion:nil];//5.0+}else{[selfdismissModalViewControllerAnimated:YES];//4.3 阅读全文
posted @ 2013-02-01 11:47 Dzs 阅读(391) 评论(0) 推荐(0) 编辑
摘要: OOA 用于需求分析工作时,帮助发掘和提炼业务逻辑,要排除对象编程的思维习惯的影响。类:将某类东西(人、物、概念)归纳在一起,根据系统的目标、业务场景等,选取合适的角度对事物进行归纳(抽象)识别类-->识别类属性-->描绘类间关系-->各类分析、抽象、整理类关系:可以加入角色,都是从1开始读(左→右,从右→左)关联(找到)、聚合(包含强、弱)、泛化为(继承自)、依赖(必须引用)、实现、自关联、三角相关阅读资料---火球UML大战需求分析 阅读全文
posted @ 2013-01-06 10:02 Dzs 阅读(435) 评论(0) 推荐(0) 编辑