??
Classes
类
Classes are the most important building block of any object-oriented system. A class is a description of a set of objects that share the same attributes, operations, relationships, ...
分类:
其他好文 时间:
2014-06-22 21:38:18
阅读次数:
226
使用l,r指针游动。
然后使用记录游动过程中的最大值。
我离散化了一下。
#include
#include
#include
#include
#include
#include
using namespace std;
#define maxn 110000
mapmp;
struct list
{
int x;
int get;
int lose;
in...
分类:
其他好文 时间:
2014-06-22 11:52:02
阅读次数:
226
一、RootViewController:
#import "RootViewController.h"
#import "SecondViewController.h"
@interface RootViewController ()
{
UILabel *_myLabel;
}
@end
@implementation RootViewController
- (id)in...
分类:
其他好文 时间:
2014-06-19 10:24:12
阅读次数:
283
No architectures to compile for(ONLY_ACTIVE_ARCH=YES 这种错误 修改building settings下 Build Active Architecture only 为NO即可。dyld: Symbol not found: _objc_setP...
分类:
其他好文 时间:
2014-06-18 15:30:00
阅读次数:
260
VEX IR是一种更加接近于compiler使用的中间语言/中间表示,它是不依赖于特定体系架构的。1. Code Blockscode blocks是VEX处理代码的一个单元,使用IRSB结构体表示:/* Code blocks, which in proper compiler terminolo...
分类:
其他好文 时间:
2014-06-18 14:57:20
阅读次数:
274
1.摄像机围绕物体旋转using UnityEngine;using System.Collections;public class CameraVirtual : MonoBehaviour{ //旋转的物体 public GameObject building; //用来记录鼠...
分类:
其他好文 时间:
2014-06-17 13:24:17
阅读次数:
197
The graphical user interface for an Android app
is built using a hierarchy ofViewandViewGroupobjects.Viewobjects are usually UI
widgets such asbuttons...
分类:
移动开发 时间:
2014-06-16 10:43:38
阅读次数:
268
在OC中我们定义一个Blocks是这样定义的:
typedef void (^ZWProgressHUDCompletionBlock)();
在Swift中定义一个闭包是这样的:
typealias ZWProgressHUDCompletionBlock=()->Void
转载请注明!!!欢迎大家加入交流群:爱疯、爱Coding:209476515...
分类:
其他好文 时间:
2014-06-14 10:48:23
阅读次数:
223
利用了大约一个多小时来搞明白OC中Blocks反向传值和Swift中Closure反向传值的差别,下面直接贴上代码:
一、第一个界面
// Created by 秦志伟 on 14-6-13.
import UIKit
class ZWRootViewController: UIViewController {
init(nibName nibNameOrNil: String?...
分类:
其他好文 时间:
2014-06-14 10:00:19
阅读次数:
451