`
文章列表
tabs判断是否打开某个页签 var flag = $('#center_tab').tabs('exists', menuName);   从一个子页面中得到父页面的另一个子页面(iframe)的jeasyui的元素 parent.frames["menu-tab-frame-001001036"].$("#rssi_cCode").textbox("setValue", cCode);   jquery 得到radiobox是否选中的方法 var today = $('input:radio[name=" ...
  模型中,NSString用copy 在.h.m中,NSString用strong int等,用assign    //一般oc对象用strong修饰 @property(nonatomic,strong)NSArray *images;   //模型做为属性,用strong修饰
 两个XML配置中,需要把扫描的类区分出来。   spring-mybatis.xml(application.xml):   <!-- 自动扫描 --> <context:component-scan base-package="com.maiken" > <!-- 父容器不加载 action --> <context:exclude-filter type="annotation" expression="org.springframework.st ...
  <!-- 处理请求时返回json字符串的中文乱码问题 --> <mvc:annotation-driven> <mvc:message-converters> <bean class="org.springframework.http.converter.StringHttpMessageConverter"> <property name="supportedMediaTypes"> <list> <value> ...
在闪屏中处理升级。   加入两项权限:   <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />   style.xml中加入以下代码,去掉标题栏 <!-- Application theme. --> <style name="AppTheme&quo ...
style.xml中的AppTheme中,加入一行 <!-- Application theme. --> <style name="AppTheme" parent="AppBaseTheme"> <!-- All customizations that are NOT specific to a particular API-level can go here. --> <item name="android:windowNoTitle"&g ...
拿到香蕉派pro,为了熟悉树莓派的系统和python控制GPIO,写个跑马灯玩玩。   1、sudo apt-get update 2、sudo apt-get install python-dev 3、按github安装香蕉派pro的rpi.gpio 4、香蕉派pro代码,6个二极管闪烁三次后,开始跑马灯,执行两次后,再次闪烁三次。 import RPi.GPIO as GPIO import time # 声明针脚 PIN_8 = 8 PIN_10 = 10 PIN_11 = 11 PIN_13 = 13 PIN_15 = 15 PIN_31 = 31 ...
  // tableView初始化时,下移20个单位,但拖拽时,数据还是会覆盖status bar self.tableView.contentInset = UIEdgeInsetsMake(20,0,0,0);    

IOS 实体KVC

    博客分类:
  • IOS
  <plist version="1.0"> <array> <dict> <key>name</key> <string>天天酷跑</string> <key>icon</key> <string>icon_00</string> </dict> <dict> <key>name</key> <string>全民飞机大战< ...

NSLog用法

    博客分类:
  • IOS
转的   要输出的格式化占位:   %@ 对象 %d, %i 整数 %u   无符整形 %f 浮点/双字 %x, %X 二进制整数 %o 八进制整数 %zu size_t %p 指针 %e   浮点/双字 (科学计算) %g   浮点/双字 %s C 字符串 %.*s Pascal字符串 %c 字符 %C unichar %lld 64位长整数(long long) %llu   无符64位长整数 %Lf 64位双字   NSLog定义在NSObjCRuntime.h中,如下所示: void NSLog(NSString *format, ...
  以下设置为windows平台   a、先用mongod --dbpath ../data登录后,use admin b、db.addUser('sa','密码'); c、然后关掉服务,启动服务时,加上mongod --dbpath ../data --auth d、mongo.exe e、use admin f、db.auth('sa','密码'); 这样就能use ****等其他collection了  
app尺寸,去掉状态栏CGRect r = [ UIScreen mainScreen ].applicationFrame;r=0,20,320,460屏幕尺寸CGRect rx = [ UIScreen mainScreen ].bounds;r=0,0,320,480状态栏尺寸

IOS 控件带动画移动

    博客分类:
  • IOS
  -(IBAction)move:(UIButton *) button { [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:0.5]; // 不允许直接修改某个对象的结构体成员 CGRect tempFrame = self.image.frame; if (button.tag == 1) { // 上 NSLog(@"上"); tempFrame.origin.y = ...
上下文设置: 服务器端基于Mina开发,心跳包25秒发一次0D+0A,客户端收到后,回0D-0A 因为客户端设置了60秒一次心跳包,所以心跳包有服务器端先发起。     客户端心跳过滤器代码:(服务器端代码就不贴了,差不多的) package com.mina.client; import java.text.SimpleDateFormat; import java.util.Date; import org.apache.mina.core.buffer.IoBuffer; import org.apache.mina.core.session.IdleSta ...
  public class Test { public static void main(String[] args) { IoBuffer buffer = IoBuffer.wrap(new byte[]{0x0D, '+', 0x0A}); System.out.println(buffer); // HeapBuffer[pos=0 lim=3 cap=3: 0D 2B 0A] System.out.println("remaining:" + buffer.remaining()); // remaining:3 byte ...
Global site tag (gtag.js) - Google Analytics