码迷,mamicode.com
首页 > 2015年07月19日 > 全部分享
NSAttributedString用法
NSAttributedString(富文本)的基本用法
分类:其他好文   时间:2015-07-19 20:12:12    阅读次数:27268
[C++ primer]联合:节省空间的类
联合是一种特殊的类。一个 union 对象可以有多个数据成员,但在任何时刻,只有一个成员可以有值。当将一个值赋给 union 对象的一个成员的时候,其他所有都变为未定义的。为 union 对象分配的存储的量至少与包含其最大数据成员的一样多。像任何类一样,一个 union 定义了一个新的类型。1、定义...
分类:编程语言   时间:2015-07-19 20:11:23    阅读次数:279
[Cocoapods安装]
常见问题1、sudo gem install cocoapods 如下所示报错ERROR: Could not find a valid gem 'cocoapods' (>= 0), here is why: Unable to download data from https://rub...
分类:其他好文   时间:2015-07-19 20:09:51    阅读次数:529
怎么让jQuery支持swipe事件
原生的jQuery并没有对移动Web做很好的支持,比如滑动事件。在使用下拉刷新、轮播图移动等操作时,都需要用到滑动事件,怎么处理可以让jQuery支持滑动事件呢1.下载js插件jquery.touchSwipe.min.js2.代码写法:$(function() { $("#ID").sw...
分类:Web程序   时间:2015-07-19 20:07:29    阅读次数:135
[CQOI2009][BZOJ1305] dance跳舞
1305: [CQOI2009]dance跳舞Time Limit:5 SecMemory Limit:162 MBSubmit:1877Solved:799[Submit][Status][Discuss]Description一次舞会有n个男孩和n个女孩。每首曲子开始时,所有男孩和女孩恰好配成n...
分类:其他好文   时间:2015-07-19 20:07:51    阅读次数:117
Android中dip、dp、sp、pt和px的区别
1、概述 过去,程序员通常以像素为单位设计计算机用户界面。例如:图片大小为80×32像素。这样处理的问题在于,如果在一个每英寸点数(dpi)更高的新显示器上运行该程序,则用户界面会显得很小。在有些情况下,用户界面可能会小到难以看清内容。由此我们采用与分辨率无关的度量单位来开发程序就能够解决这个问题。...
分类:移动开发   时间:2015-07-19 20:05:08    阅读次数:142
POJ1700:Crossing River(过河问题)
POJ1700Time Limit:1000MSMemory Limit:10000KB64bit IO Format:%I64d & %I64uDescriptionA group of N people wishes to go across a river with on...
分类:其他好文   时间:2015-07-19 20:03:32    阅读次数:146
Intersection of Two Linked Lists
Write a program to find the node at which the intersection of two singly linked lists begins.For example, the following two linked lists:A: a...
分类:其他好文   时间:2015-07-19 20:03:04    阅读次数:99
[Cocoapods]使用
根据官方在Git上的描述https://github.com/AFNetworking/AFNetworking/wiki/Getting-Started-with-AFNetworking1、在所用的工程里面创建pod file 命令行操作示$ cd /Users/UserName/Documen...
分类:其他好文   时间:2015-07-19 20:03:32    阅读次数:111
Backbone 学习笔记
Backbone 是一款基于模型-视图-控制器 MVC 模式的轻量级javascript 框架 ,可以用来帮助开发人员创建单页Web应用。借助Backbone 我们可以使用REST的方式来最小化客户端和服务器间的数据传输,从而实现了更快加速的Web页面更新。能心静下来学习了,以前以为Backbone...
分类:其他好文   时间:2015-07-19 20:04:25    阅读次数:93
LeetCode Path Sum
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.Fo...
分类:其他好文   时间:2015-07-19 20:03:00    阅读次数:108
Jquery enter事件绑定
1 $(window).keydown(function(event) 2 { 3 //enter keycode 为13 4 if(event.keyCode==13) 5 { 6 $(".submit")....
分类:Web程序   时间:2015-07-19 20:03:32    阅读次数:140
仪仗队(欧拉函数模板)
1 long long euler_phi(int n) 2 { 3 int m=(int)sqrt(n+0.5); 4 int ans=n; 5 for(int i=2;i1)ans=ans/n*(n-1);14 return ans;15 }Descriptio...
分类:其他好文   时间:2015-07-19 20:03:03    阅读次数:137
UIScrollView自动轮播图
添加定时器,可以用来展示广告#import "JZScrollViewController.h"@interface JZScrollViewController () @property (nonatomic, strong) UIScrollView * scrollView;@property...
分类:其他好文   时间:2015-07-19 20:00:53    阅读次数:116
BZOJ 1025 [SCOI2009]游戏
1025: [SCOI2009]游戏Time Limit:1 SecMemory Limit:162 MBSubmit:1533Solved:964[Submit][Status][Discuss]Descriptionwindy学会了一种游戏。对于1到N这N个数字,都有唯一且不同的1到N的数字与之...
分类:其他好文   时间:2015-07-19 20:02:17    阅读次数:113
gdb 调试
一、简介 二、使用 三、常见问题 1、cgdb中文乱码问题,解决方法: 参考:http://blog.liyiwei.cn/fix-linuxmint-cgdb-chinese-charactor/ 步骤如下: find / -name "libncursesw.so*" rm -rf libncu...
分类:数据库   时间:2015-07-19 20:00:17    阅读次数:162
大数取模 模板
1 scanf("%s%d",a,&b);2 int len=strlen(a);3 int ans=0;4 for(int i=st;i 0, b fits into a 32 bit signed integer). Numbers will not contain leading zeroes...
分类:其他好文   时间:2015-07-19 20:00:28    阅读次数:134
1626条   上一页 1 ... 24 25 26 27 28 29 30 ... 96 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!