`
文章列表

理解 Scroll Views

    博客分类:
  • IOS
  转自:http://objccn.io/issue-3-2/ 英文原文:http://www.objc.io/issue-3/scroll-view.html
解决方法见http://www.2cto.com/kf/201408/322258.html

高效利用你的Xcode

高效利用你的Xcode 英文原文地址   已拜读,很不错,推荐各位有时间读一下

iOS Push Notifications

    博客分类:
  • IOS
https://parse.com/tutorials/ios-push-notifications http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1   同样一些可以借鉴的例子:https://parse.com/tutorials/
问题解决:在ViewDidLoad中添加这句: if( ([[[UIDevice currentDevice] systemVersion] doubleValue]>=7.0)) { self.edgesForExtendedLayout = UIRectEdgeNone; }  
参考:Building Java Projects with Maven   关键点: 1.代码结构   └── src └── main └── java └── hello 2.pom的配置   可参考: Introduction to the Standard Directory Layout    
只是备忘Oracle11g客户端安装及plsql配置
在拦截器或过滤器中加入如下代码 在header中加入sessionstatus(ajax请求不要执行重定向sendRedirect) /**------处理ajax请求----start---**/ if("XMLHttpRequest".equals(request.getHeader("X-Requested-With"))){ response.setHeader("sessionstatus", "timeout"); response.setHeader("r ...
linux启动项目的时候报这个相关的错误,   ERROR [main] Cache.<clinit>(202) | Unable to set localhost. This prevents creation of a GUID. Cause was: centos: centos java.net.UnknownHostException: centos: centos at java.net.InetAddress.getLocalHost(InetAddress.java:1374)   原因没有给自己的机器名称做映射,在hosts文件中将 ...
这篇博客只是随便记录一下,方便以后自己查看(主要配置toolbox.xml、velocity.properties加载): 1.struts中配置:struts.xml <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dt ...
如果项目中有注解,导出的时候要注意了,一定要勾选"Add directory entries"复选框,如下图:   参考:http://www.oschina.net/question/913845_83398
总的Cpu使用率计算计算方法: 1、  采样两个足够短的时间间隔的Cpu快照,分别记作t1,t2,其中t1、t2的结构均为: (user、nice、system、idle、iowait、irq、softirq、stealstolen、guest)的9元组; 2、  计算总的Cpu时间片totalCpuTime a)         把第一次的所有cpu使用情况求和,得到s1; b)         把第二次的所有cpu使用情况求和,得到s2; c)         s2 - s1得到这个时间间隔内的所有时间片,即totalCpuTime = j2 - j1 ; 3、计算空闲时间 ...

linux awk命令详解

原文地址:http://www.cnblogs.com/ggjucheng/archive/2013/01/13/2858470.html   例如查看系统内存使用率: free -m |awk 'NR==2{rate=$3/$2;print rate*100"%”}’      
iOS7 UIPickerView doesn't properly display custom views with images   原文地址:http://stackoverflow.com/questions/19158319/ios7-uipickerview-doesnt-properly-display-custom-views-with-images      
http://blog.csdn.net/zht666/article/details/8695908   用的是这一种方法:设置 @RequestMapping 的 produces 参数,代码如下所示: 思路:使用 @ResponseBody 注解直接返回json字符串,为了防止中文乱码,将@RequestMapping 的 produces 参数设置成"text/html;charset=UTF-8" 即可。
Global site tag (gtag.js) - Google Analytics