上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 24 下一页
摘要: 可以远程访问IIS Express的意义在于:1. 可以从其它设备上Debug项目,这点对于手持设备等不是很容易用虚拟机虚拟的设备尤为重要。2. 可以避免过早配置IIS 7(不一定是好事。。)要开发远程访问最重要的就是把项目URL中默认的localhost改为本机对外的IP地址,如下:但是直接改的话... 阅读全文
posted @ 2014-10-22 16:54 GreatK 阅读(1373) 评论(2) 推荐(0)
摘要: 接收推送消息部分我们通过ZeroMQ实现,可以参考http://www.cnblogs.com/ilovewindy/p/3984283.html。首先是开机自启动的功能实现,代码如下:1. AndroidManifest.xml中添加如下代码: 1 2 3 4 5 ….. 6 10... 阅读全文
posted @ 2014-09-30 06:37 GreatK 阅读(2061) 评论(9) 推荐(1)
摘要: 通过ZeroMQ的pub/sub模式,我们可以实现发送推送消息的功能。以下为示例代码(入门可参考此文:http://www.cnblogs.com/ilovewindy/p/3984269.html): 1 (def ctx (ZMQ/context 1)) 2 3 (def msg-list (... 阅读全文
posted @ 2014-09-29 09:31 GreatK 阅读(1525) 评论(1) 推荐(0)
摘要: DEMO说明一切: 1 // this is the id of the form 2 $("#idForm").submit(function() { 3 4 var url = "path/to/your/script.php"; // the script where you han... 阅读全文
posted @ 2014-09-28 09:30 GreatK 阅读(343) 评论(0) 推荐(0)
摘要: 这里我们将给出一个subscribe模式的客户端示例程序,如下: 1 private class ZeroMQMessageTask extends AsyncTask { 2 private String message = ""; 3 4 public ZeroMQMessag... 阅读全文
posted @ 2014-09-26 10:36 GreatK 阅读(3773) 评论(0) 推荐(0)
摘要: 假设你已经知道什么是ZeroMQ(不知道的话可以看这个:http://zh.wikipedia.org/wiki/%C3%98MQ),以下就给出在Clojure中如何使用ZeroMQ(感谢此文作者:http://patternhatch.com/2013/06/12/messaging-using-... 阅读全文
posted @ 2014-09-25 10:30 GreatK 阅读(2150) 评论(0) 推荐(0)
摘要: 感谢控件作者:https://github.com/SocialObjects-Software/AMSlideMenu首先上效果图:这里我们使用AMSlideMenu来实现左右侧滑菜单的效果。控件支持单独左侧滑、单独右侧滑和左右侧滑。同时支持Storyboard和xib两种开发模式。这里介绍第二种... 阅读全文
posted @ 2014-09-24 11:48 GreatK 阅读(9905) 评论(0) 推荐(2)
摘要: From google: If your app uses a custom image as the background of the bar, you'll need to provide a “taller” image so that it extends up behind the st... 阅读全文
posted @ 2014-09-23 10:22 GreatK 阅读(363) 评论(0) 推荐(1)
摘要: 要改变UITableViewCell选中时的背景色,需要在-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)方法中添加如下代码:// 设置cell选中的背景色UIVi... 阅读全文
posted @ 2014-09-19 11:55 GreatK 阅读(720) 评论(0) 推荐(0)
摘要: 要去除UITableView在运行时显示的多余空白行,只需要将TableView的Style从Plain改为Grouped即可。 阅读全文
posted @ 2014-09-18 09:47 GreatK 阅读(628) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 24 下一页