最终效果图:
BeyondViewController.h
//
// BeyondViewController.h
// 8_scrollVIew分页浏览
//
// Created by beyond on 14-7-25.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#...
分类:
移动开发 时间:
2014-07-26 02:17:06
阅读次数:
206
最终效果图:
BeyondViewController.h
//
// BeyondViewController.h
// 8_scrollVIew分页浏览
//
// Created by beyond on 14-7-25.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import
...
分类:
移动开发 时间:
2014-07-26 02:11:03
阅读次数:
173
//// secondViewController.m// AudioPlayer//// Created by apple on 14-7-24.// Copyright (c) 2014年 苹果IOS软件开发者. All rights reserved.//#import "secondView...
分类:
其他好文 时间:
2014-07-26 01:35:17
阅读次数:
305
在对象序列化的时候,有些变量不需要序列化,比如密码等,可以使用transient关键字来解决这个问题,transient修饰的变量不会被序列化。例子: 1 import java.io.*; 2 import java.util.Date; 3 4 5 /** 6 * Created by ...
分类:
其他好文 时间:
2014-07-25 16:42:31
阅读次数:
285
例子1: 1 import net.sf.json.JSONArray; 2 import net.sf.json.JSONObject; 3 4 /** 5 * Created by leiqiang on 2014/7/25. 6 */ 7 public class JSONObjectS...
分类:
Web程序 时间:
2014-07-25 16:41:51
阅读次数:
437
题意:给你n,m 问你n-m中有多少个数首位等于末位。解题思路:数位DP,从0-n有多少个,这样分开计算,首先把每一位所有可能都枚举出来,然后在一位一位的比对DP解题代码: 1 // File Name: 204a.cpp 2 // Author: darkdream 3 // Created Ti...
分类:
其他好文 时间:
2014-07-25 14:01:21
阅读次数:
236
//
//??main.m
//??OrderTest
//
//??Created?by?Roeru?on?23/7/14.
//??Copyright?(c)?2014?Shinoi.?All?rights?reserved.
//
#import?<Foundation/Foundation.h>
void?noNameSort(int?a...
分类:
其他好文 时间:
2014-07-25 11:39:52
阅读次数:
299
1 // 2 // HMViewController.m 3 // 02-SQLite的应用 4 // 5 // Created by apple on 14-7-24. 6 // Copyright (c) 2014年 heima. All rights reserved. ...
分类:
移动开发 时间:
2014-07-25 02:19:24
阅读次数:
316
AFNetworking是一个轻量级的iOS网络通信类库。它建立在NSURLConnection和NSOperation等类库的基础上,让很多网络通信功能的实现变得十分简单。它支持HTTP请求和基于REST的网络服务(包括GET、POST、
PUT、DELETE等)。支持ARC。
//
// MJViewController.m
// 03.AFN演练
//
// Created by...
分类:
Web程序 时间:
2014-07-24 23:31:43
阅读次数:
328
最终效果图
BeyondViewController.h
//
// BeyondViewController.h
// 6_ToolBar
//
// Created by beyond on 14-7-24.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import
@in...
分类:
移动开发 时间:
2014-07-24 23:08:43
阅读次数:
396