首页 > 2014年11月29日 > 全部分享
Xcode6编译SDWebImage报错原因分析(SDWebImageDownloaderOperation.m错误)
之前写了一片关于编译SDWebImage报错解决方法的文章:http://blog.csdn.net/cuibo1123/article/details/39434015结果很多人问这个问题的原因,那就在这里给大家说一说好了,分析思路一并送上(不过我还是建议大家自己动手去分析)。首先,如果新建工程,按照SDWebImage的方式声明输出口并引用:@interface ZCTest () @...
分类:Web开发   时间:2014-11-29 07:05:28    收藏:0  评论:0  赞:0  阅读:292
LeetCode Climbing Stairs
You are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?思路分析:考察DP,定义ClimbWays数组,ClimbWays[n]...
分类:其他   时间:2014-11-29 07:05:08    收藏:0  评论:0  赞:0  阅读:285
刷完OpenWrt在浏览器无法访问的解决办法
其实问题很明显、是因为刷了trunk版固件、并没有集成luci、那接下来就是装luci、但是装luci需要联网(不过其实不联网其实也是可以安装的、)我说的联网是让路有联网、而不是网线接路由,路由接电脑、然后电脑拨号上网、这种联网、如何让路由联网呢?1、最简单的方法、如果你有两个路由、或者你的猫带有路...
分类:其他   时间:2014-11-29 07:04:18    收藏:0  评论:0  赞:1  阅读:3129
Leetcode-Add Binary
Given two binary strings, return their sum (also a binary string). For example,a = "11"b = "1"Return "100".Solution: 1 public class Solution { 2 p...
分类:其他   时间:2014-11-29 07:04:08    收藏:0  评论:0  赞:0  阅读:129
登录不了路由器恢复办法
1,在本机上开服务器,然后用wget,把wr703XXX.bin下载到/tmp或者用winscp登陆,将原厂固件wr703XXX.bin上传到路由器的tmp目录下2,使用putty的ssh登陆路由器,用户名密码你自己知道(或第一次可用telnet登录)输入:mtd -r write /tmp/wr7...
分类:其他   时间:2014-11-29 07:03:58    收藏:0  评论:0  赞:0  阅读:255
Leetcode-Climbing Stairs
You are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you cli...
分类:其他   时间:2014-11-29 07:03:48    收藏:0  评论:0  赞:0  阅读:250
Leetcode-Merge Two Sorted Lists
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.Solution:...
分类:其他   时间:2014-11-29 07:03:38    收藏:0  评论:0  赞:0  阅读:181
Leetcode Variant-Plus N
Given a non-negative number represented as an array of digits, plus N to the number.The digits are stored such that the most significant digit is at t...
分类:其他   时间:2014-11-29 07:03:28    收藏:0  评论:0  赞:0  阅读:266
Leetcode-Plus One
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:其他   时间:2014-11-29 07:03:18    收藏:0  评论:0  赞:0  阅读:195
Leetcode-Binary Tree Level Order Traversal
Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level). For example:Given binary tree {3...
分类:其他   时间:2014-11-29 07:02:50    收藏:0  评论:0  赞:0  阅读:230
[iOS基础控件 - 5.3] 电台APP可滚动主界面(UIScrollView制作)
A.功能1.上下可滚动的电台 2 x n 的图标集2.顶部半透明标题3.底部半透明功能按钮B.实现思路1.设置图标、启动画面2.拖入UIScrollView,设置背景色(1)设置contentSize, x=0阻止水平移动3.加入电台图标(6个)4.加入顶部标题和设置按钮,加入到总的View,不是U...
分类:移动平台   时间:2014-11-29 07:01:40    收藏:0  评论:0  赞:0  阅读:373
【原创】Linux环境下的图形系统和AMD R600显卡编程(4)——AMD显卡显存管理机制
显卡使用的内存分为两部分,一部分是显卡自带的显存称为VRAM内存,另外一部分是系统主存称为GTT内存(graphics translation table和后面的GART含义相同,都是指显卡的页表,GTT 内存可以就理解为需要建立GPU页表的显存)。在嵌入式系统或者集成显卡上,显卡通常是不自带显.....
分类:系统服务   时间:2014-11-29 07:01:38    收藏:0  评论:0  赞:0  阅读:1731
HDU 4793 Collision(2013长沙区域赛现场赛C题)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4793解题报告:在一个平面上有一个圆形medal,半径为Rm,圆心为(0,0),同时有一个圆形范围圆心也是(0,0),半径为R,R > Rm,现在向平面上投掷一枚硬币,硬币初始的圆心位置为(x,y),半径...
分类:其他   时间:2014-11-29 07:00:02    收藏:0  评论:0  赞:0  阅读:297
[LeetCode] Add Two Numbers 两个数字相加
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:其他   时间:2014-11-29 06:58:35    收藏:0  评论:0  赞:0  阅读:271
Leetcode-Merge Sorted Array
Given two sorted integer arrays A and B, merge B into A as one sorted array. Note:You may assume that A has enough space (size that is greater or equa...
分类:其他   时间:2014-11-29 06:57:25    收藏:0  评论:0  赞:0  阅读:199
JAVA中的糕富帅技术——反射(一)
前言 突然发现好久没写博客了,前面写的都是关于Android的东西,今天心血来潮突然有一种冲动想写一篇基于JAVA技术的博客,别问我为什么?有钱、任性! 今天就来谈谈反射机制;学过JAVA的人不一定懂得反射,但是一定听说过反射,不过也仅仅是听说过而已;因为反射用的地方也不会那么多,但是反射用的妙.....
分类:编程语言   时间:2014-11-29 06:55:54    收藏:0  评论:0  赞:0  阅读:360
Leetcode-Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:其他   时间:2014-11-29 06:49:00    收藏:0  评论:0  赞:0  阅读:222
Java用筛子法求素数
描述现在给出你一些数,要求你写出一个程序,输出这些整数相邻最近的素数,并输出其相距长度。如果左右有等距离长度素数,则输出左侧的值及相应距离。如果输入的整数本身就是素数,则输出该素数本身,距离输出0输入第一行给出测试数据组数N(0<N<=10000)接下来的N行每行有一个整数M(0<M<1000000...
分类:编程语言   时间:2014-11-29 06:48:30    收藏:0  评论:0  赞:0  阅读:240
用持续集成工具Travis进行构建和部署
本文简单说明了如何使用持续集成工具Travis进行构建和部署的过程。
分类:其他   时间:2014-11-29 06:48:10    收藏:0  评论:0  赞:0  阅读:340
[iOS基础控件 - 5.4] 广告分页代码(UIScrollView制作)
A.概念例子就是桌面的APP列表,当APP数量超过一个屏幕,自动进行分页B.实现思路1.创建一个UIScrollView,这里设置为宽度跟屏幕相同,高度1/4屏幕高度左右2.使用代码在UIScrollView中添加ImageView,横向放入多张ImageView3.设置UIScrollView的c...
分类:移动平台   时间:2014-11-29 06:46:48    收藏:0  评论:0  赞:0  阅读:852
1233条   上一页 1 ... 51 52 53 54 55 ... 62 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!