码迷,mamicode.com
首页 > 2015年02月10日 > 全部分享
-[UIKeyboardTaskQueue waitUntilAllTasksAreFinished] may only be called from the main thread.【创建键盘监听事件,然后操作键盘(弹出、收回),结果在运行程序时出现如下错误(如有知道解决办法的朋友请留言探讨!)】
*** Assertion failure in -[UIKeyboardTaskQueue waitUntilAllTasksAreFinished], /SourceCache/UIKit_Sim/UIKit-3318.16.14/Keyboard/UIKeyboardTaskQueue.m:3...
分类:其他好文   时间:2015-02-10 14:45:36    阅读次数:7054
android-TextView 无法调节字体、边框的距离
更改字体、边框距离
分类:移动开发   时间:2015-02-10 14:44:47    阅读次数:5428
深入.net(多态二)
Java培训、Android培训、iOS培训、.Net培训、期待与您交流!代码优化技术: 通过“继承”技术,实现代码的复用,减少代码的编写量。 因为子类继承父类,拥有了父类所有对外公开“属性”和“方法”,所以,在系统中,完全可以由子类替代父类(里氏替换原则)!在替代的过程中,子类不仅仅能替代父类完成...
分类:Web程序   时间:2015-02-10 14:46:13    阅读次数:161
js 效果样式大全
设置 滑动图片背景模糊度实现js滑动效果图
分类:Web程序   时间:2015-02-10 14:46:31    阅读次数:163
leetcode[45]Jump Game II
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:其他好文   时间:2015-02-10 14:44:23    阅读次数:149
二维码生成基于Gma.QrCodeNet.Encoding
参考:http://www.cnblogs.com/vmyspace/archive/2012/04/05/2433233.html今天,项目需要,参考资料写了个二维码生成后台 基于Gma.QrCodeNet.Encoding前台html直接请求地址,固定图片高宽就能用。using System;u...
分类:Web程序   时间:2015-02-10 14:46:02    阅读次数:5668
Linux硬件信息查询命令
系统uname -a # 查看内核/操作系统/CPU信息Linux hostname 2.6.18-128.el5 #1 SMP Wed Dec 17 11:41:38 EST 2008 x86_64 x86_64 x86_64 GNU/Linuxhead -n 1 /etc/issue...
分类:系统相关   时间:2015-02-10 14:43:02    阅读次数:340
leetcode[16]3Sum Closest
Given an arraySofnintegers, find three integers inSsuch that the sum is closest to a given number, target. Return the sum of the three integers. You m...
分类:其他好文   时间:2015-02-10 14:42:51    阅读次数:198
如何解决UITableViewCell因重用机制引起的重影问题
UITableView继承自UIScrollview,是苹果为我们封装好的一个基于scroll的控件。上面主要是一个个的UITableViewCell,可以让UITableViewCell响应一些点击事件,也可以在UITableViewCell中加入UITextField或者UITextView等子...
分类:其他好文   时间:2015-02-10 14:44:27    阅读次数:5058
多层架构(两层)
Java培训、Android培训、iOS培训、.Net培训、期待与您交流!从代码复用的角度: 1、ctrl + c 、Ctrl + v 2、封装成一个“方法” ---- 一个代码文件中 3、封装成一个包含该“数据”及“逻辑”的类 --- 同一个项目内 4、封装成一个“结果集”(项目) ---- 各项...
分类:其他好文   时间:2015-02-10 14:44:20    阅读次数:173
leetcode[17]Letter Combinations of a Phone Number
Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the telephon...
分类:其他好文   时间:2015-02-10 14:44:37    阅读次数:181
struts2配置默认首页
配置struts2 默认欢迎页的几种办法:1、首先需要明确的是struts过滤器配置映射的模式是路径匹配还是扩展匹配,如果url-pattern配置为/*,如果不做特殊处理,是不会转到welcome-file-list设置的文件的。这种情况,有两种办法解决默认转向:a.一种是在struts.xml中...
分类:其他好文   时间:2015-02-10 14:43:50    阅读次数:366
git 命令简洁手册
1.从当前目录初始化git init2.对文件进行跟踪 或 将已跟踪的文件放到暂缓区 或 把有冲突的文件标记为已解决状态git add 3.从现有仓库克隆git clone 地址(支持git协议,http协议,SSH协议)4.检查当前文件状态git status5.查看已暂存和未暂存的更新git d...
分类:其他好文   时间:2015-02-10 14:45:12    阅读次数:225
临时代码
var access, t: OleVariant; tmpQuery: TADOQuery; FTable: _Table; FCatalog: _Catalog; FIndex: _Index; I: Integer; pty: adox_tlb.Property_; pties...
分类:其他好文   时间:2015-02-10 14:42:50    阅读次数:183
leetcode[39]Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesamerepeated num...
分类:其他好文   时间:2015-02-10 14:42:36    阅读次数:116
leetcode[50]Pow(x, n)
Implement pow(x,n).class Solution {public: double pow(double x, int n) { if(n==0)return 1.0; if(n0) { double half=p...
分类:其他好文   时间:2015-02-10 14:42:08    阅读次数:191
stateMachine 相关知识
一个state的基本构造,processMessage 以及可选的enter exit 和getName。 processMessager是用于处理数据。 enter 和exit 则是类似于 面向编程的构造和析构方法。 * A state is a State object and must imp...
分类:系统相关   时间:2015-02-10 14:41:39    阅读次数:184
1734条   上一页 1 ... 53 54 55 56 57 58 59 ... 102 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!