码迷,mamicode.com
首页 > 2015年10月14日 > 全部分享
Swfit 基本语句
// Playground - noun: a place where people can playimport UIKit// swift语言没有Main 函数 ,main函数是封装在自己的框架里的// 一行的注释用 //// 多行的注释,或者代码块 用 /* */// 区别于OC中的/*/**...
分类:其他好文   时间:2015-10-14 21:21:59    阅读次数:236
UIScrollView
#import "RootView.h"@implementation RootView- (instancetype)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if (self) { [self p_setup...
分类:其他好文   时间:2015-10-14 21:18:48    阅读次数:165
实现姓名和学号每隔一秒钟互换的效果
1 2 3 4 5 Document 6 7 8 9 10 11 12 13 14 17 18 19 36 37 38 39 40
分类:其他好文   时间:2015-10-14 21:19:32    阅读次数:187
简单的JDBC封装
JDBC(Java Data Base Connectivity,java数据库连接)是一种用于执行SQL语句的Java API,可以为多种关系数据库提供统一访问,它由一组用Java语言编写的类和接口组成。import java.sql.Connection;import java.sql.Driv...
分类:数据库   时间:2015-10-14 21:18:27    阅读次数:169
使用白鹭引擎遇到的一些问题以及一些工具分享
用egret也有一段时间了,记录一下遇到的bug和流水账。BUG类1Uncaught SecurityError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The canvas has been tainted ...
分类:其他好文   时间:2015-10-14 21:17:44    阅读次数:2837
iOS_KVC与KVO
目 录:一、KVC 二、KVO 一、KVC机制 ...
分类:移动开发   时间:2015-10-14 21:17:34    阅读次数:158
iOS 字符串的UTF8 编码 以及归档反归档
NSString* str = [@"%E4%B8%AD%E5%9B%BD" stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; NSLog(@"str=%@", str); NSString *str1 = @"....
分类:移动开发   时间:2015-10-14 21:16:51    阅读次数:235
史上最详细的Android Studio系列教程四--Gradle基础
史上最详细的Android Studio系列教程四--Gradle基础
分类:移动开发   时间:2015-10-14 21:19:09    阅读次数:146
2015.1014
#includemain(){ int a; a=3%4;/*对于一个小于一小数,求余输出把被除数直接落下来*/ printf("a=%d\n",a); double fahr,celsius; fahr=100,celsius=5*(fahr-32)/9; printf("celsius=%lf\...
分类:其他好文   时间:2015-10-14 21:19:14    阅读次数:130
BZOJ1008 [HNOI2008]越狱
1008: [HNOI2008]越狱Time Limit:1 SecMemory Limit:162 MBSubmit:5846Solved:2494[Submit][Status][Discuss]Description监狱有连续编号为1...N的N个房间,每个房间关押一个犯人,有M种宗教,每个犯...
分类:其他好文   时间:2015-10-14 21:16:31    阅读次数:145
Java StringBuffer类
如果经常需要对一个字符串进行修改,例如插入、删除、拼接等操作,使用SringBuffer更加合适,因为StringBuffer在进行字符串处理是不生成新的对象,在内存上由于String类。StringBuffer类中存在很多和String类一样的方法,这些方法在功能上和String中的功能是一样的,...
分类:编程语言   时间:2015-10-14 21:16:37    阅读次数:130
min-height最小高度的实现(兼容IE6、IE7、FF)(解决IE6不兼容min-height)
super胡 喝水为什么会中毒? 喝水为什么会中毒?喝水为什么会中毒?喝水为什么会中毒?喝水为什么会中毒?喝水为什么会中毒?喝水为什么会中毒?喝水为什么会中毒?喝水为什么会中毒?喝水为什么会中毒?喝水为什么会中毒?喝水为什么会中毒?喝水为什么会中毒?喝水为什么会...
分类:其他好文   时间:2015-10-14 21:16:55    阅读次数:200
LeetCode OJ:Remove Duplicates from Sorted List (排好序的链表去重)
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, retu...
分类:其他好文   时间:2015-10-14 21:15:55    阅读次数:122
词法分析
#include #include #include #define _KEY_WOED_END "waiting for your expanding" //关键字结束标志typedef struct { int typenum; char * word; }WORD;char input[255...
分类:其他好文   时间:2015-10-14 21:16:27    阅读次数:187
Cross-compiling Qt Embedded 5.5 for Raspberry Pi 2
This tutorial shows how to cross-compile the Embedded build of Qt 5.5 for Raspberry Pi 2. The Embedded build does not use the X11 server and instead d...
分类:Web程序   时间:2015-10-14 21:15:51    阅读次数:386
Linq
var ids = (from id in ed_ProjectClass.Values select Guid.Parse(id)).ToArray(); Entity.ProjectClassCollection.Where(p =>...
分类:其他好文   时间:2015-10-14 21:15:23    阅读次数:196
《zw版·Halcon-delphi系列原创教程》 Halcon分类函数017·point点函数
《zw版·Halcon-delphi系列原创教程》 Halcon分类函数017·point点函数为方便阅读,在不影响说明的前提下,笔者对函数进行了简化::: 用符号“**”,替换:“procedure”:: 用大写字母“X”,替换:“IHUntypedObjectX”:: 省略了字符:“const”...
分类:Windows程序   时间:2015-10-14 21:15:02    阅读次数:1148
1502条   上一页 1 ... 16 17 18 19 20 21 22 ... 89 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!