一、使用Broadcast Reciver 1.右击java文件夹,new->other->Broadcast Receiver后会在AndroidManifest.xml文件中生成一个receiver项 ...
分类:
移动开发 时间:
2016-01-23 18:14:14
阅读次数:
161
现在很多工程师在部署Citrix项目中都会开启HTML5,用户就不需要安装Receiver,通过Web直接就可以登入到虚拟桌面,一般项目中从用户打开网页登入用户名拿到自己办公桌面一般时间都在60S内(这个是保守的,我自己做的项目都在30s-40s用户就可以拿到桌面)。就在这短暂的一分钟内..
分类:
其他好文 时间:
2016-01-20 15:51:00
阅读次数:
974
通常使用NSMutableDictionary时经常会使用setValue:forKey:和setObject:forKey:他们一般情况下是可以交互使用的,但是他们在特定情况下是有区别的:官方文档中有如下注释:/* Send -setObject:forKey: to the receiver, ...
分类:
其他好文 时间:
2016-01-19 12:32:39
阅读次数:
169
1、广播的注册 (1)动态广播注册: 优点:可以灵活控制广播的注册与撤销 缺点:必须在程序启动时才能接收广播 IntentFilter :当Intent在组建之间传递时,组件想告诉android系统自己可以响应及处理那些Intent,就要用到IntentFilter类,In...
分类:
移动开发 时间:
2016-01-19 10:27:28
阅读次数:
237
1.Receiver 1 public class Receiver 2 { 3 public delegate void HeartBeat(byte[] data); 4 public event HeartBeat Heart; 5 6 ...
分类:
其他好文 时间:
2016-01-16 19:05:52
阅读次数:
190
这个错误通常发生在iOS7其中,可能是缓存的导致的问题。解决步骤:右击Finder,选择 Go to Folder复制上:“~/Library/Application Support/iPhone Simulator/”这回打开iPhone Simulator的目录。然后删除当中的7.x 目录翻译编...
分类:
移动开发 时间:
2016-01-14 14:15:06
阅读次数:
213
翻看该方法的参考文档,苹果对retainCount方法的描述如下:retainCountDo not use this method. (required)- (NSUInteger)retainCountReturn ValueThe receiver’s reference count.Spec...
分类:
其他好文 时间:
2016-01-10 21:09:30
阅读次数:
289
1 setValue: forKey:的定义@interface NSMutableDictionary(NSKeyValueCoding)/* Send -setObject:forKey: to the receiver, unless the value is nil, in which ca...
分类:
其他好文 时间:
2016-01-07 17:59:06
阅读次数:
142
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project uec-receiver-api: Compilation failure...
分类:
编程语言 时间:
2016-01-05 18:51:08
阅读次数:
464
UART : university asynchronous receiver and transmitter UART // 通用异步接收器和发送器为什么要有串口:因为许多嵌入式设备没有显示屏,无法获得设备的实事数据信息,所以可以通过 UART 串口和超级终端相连,打印嵌入式设备输出信息。也可以通...
分类:
其他好文 时间:
2016-01-02 22:20:09
阅读次数:
279