摘要: 需要要在UIActivityViewController Action栏中加入一个OpenInActivity.原先其实就是在原先的基础上将OpenIn 整合进来。创建一个OpenInActivity继承与UIActivity。复写三个关键属性 :1. Title: 显示活动的名称2. Image:... 阅读全文
posted @ 2015-06-09 16:30 cxzhe 阅读(194) 评论(0) 推荐(0) 编辑
摘要: C# 6.0 学习1. 属性可直接赋值 Public int X{ get; } = 5;2. 静态引用: using static System.Math; … public double Distance =>Sqrt(X * X + Y * Y); …3. 空操作符 ?. … if (temp... 阅读全文
posted @ 2015-05-19 11:08 cxzhe 阅读(153) 评论(0) 推荐(0) 编辑
摘要: privatevoidDrawMeasure(CGContextcontext,Coordinatecoordinate,IListlines,Point2dpoint){vartop=coordinate.DeviceToLogical(newCGPoint(0,0));varbottom=co... 阅读全文
posted @ 2015-03-19 16:08 cxzhe 阅读(114) 评论(0) 推荐(0) 编辑
摘要: usingSystem;usingSystem.Collections;usingSystem.Collections.Generic;usingSystem.Linq;usingCoreGraphics;usingUIKit;usingPasasoft.GeometryLib;usingPasa... 阅读全文
posted @ 2015-03-19 09:47 cxzhe 阅读(113) 评论(0) 推荐(0) 编辑
摘要: usingSystem;usingCoreGraphics;usingUIKit;usingFoundation;usingPasasoft.Fep.Drawing;usingPasasoft.Utilities;usingPasasoft.Fep.Resources;usingPasasoft.... 阅读全文
posted @ 2015-03-09 17:20 cxzhe 阅读(217) 评论(0) 推荐(0) 编辑
摘要: iPhone 6 Plus (@3x)iPhone 6 and iPhone 5 (@2x)iPhone 4s (@2x)iPad and iPad mini (@2x)iPad 2 and iPad mini (@1x)应用程序图标 (必要)180 x 180(@3x)120 x 120(@2x)... 阅读全文
posted @ 2015-03-06 10:33 cxzhe 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 完成程序中项目的Duplicate功能下图为产品的Duplicate功能,长按可以弹出 SharedMenuController(ShouldShowMenu方法), UIMenuItem里可以自己定义 UIMenuItem 我所需要完成的是项目列表中的duplicate首先在 项目列表所属的UI... 阅读全文
posted @ 2014-06-04 14:26 cxzhe 阅读(191) 评论(0) 推荐(0) 编辑
摘要: MONO DeBuggerMac上支持1:USB连线调试,WIFI调试2:Debug 可以调试进去封装好的类库 (要在Debugger中开启类库调试)(Debug project code only;do not step into framework code.)生成调试版本比发布版本更加久Mon... 阅读全文
posted @ 2014-05-28 09:40 cxzhe 阅读(188) 评论(0) 推荐(0) 编辑
摘要: Rivets是MONO上开源的一个DLL。跨平台上实现应用与应用间的跳转。于传统应用跳转不同,传统跳转需要连接先跳转到WEB上然后才跳转到应用中,这是一个用户体验极差的操作。范例中异步调用Example Store 应用,通过特色URL,轻松打开想要的应用,打开的应用对接收到URL进行处理。 1 n... 阅读全文
posted @ 2014-05-23 12:24 cxzhe 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 为原来的应用中的项目列表添加搜索条并且实现搜索方法。当中动用到的几个类: UITableViewController(外层的类,列表显示的类) UITableViewSource(数据源,列表中行和分组数据获取的地方) UITableViewCell(单元格不多介绍,我的应用中搜索得到单元和平时使用... 阅读全文
posted @ 2014-05-22 11:49 cxzhe 阅读(380) 评论(0) 推荐(0) 编辑