注册成为开发者“App Distribution Guide”中的“Managing
Accounts”会教你如何成注册苹果开发者。学会设计漂亮的应用界面“iOS Human Interface
Guidelines”教你如何设计出遵循iOS用户界面惯例的应用。学习语言“Programming wi...
分类:
其他好文 时间:
2014-05-19 19:25:03
阅读次数:
306
刚开始对配置文件的认识比较模式,按照书上讲的,往程序中添加一个App.config文件,然后添加System.configuration引用就可以了。但是真正去做的时候也遇到不少问题,小小的总结一下。
首先,为什么要使用配置文件呢?
我们在连接数据库的时候,需要有一个对象来保存连接字符串,通常情况下这个字符串是写在程序代码中的,这样如果我们更换数据库访问时,我们还是...
分类:
数据库 时间:
2014-05-18 18:32:08
阅读次数:
383
package com.dhy.phonedial;
import android.app.Activity;
import android.app.Fragment;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.LayoutInflate...
分类:
移动开发 时间:
2014-05-18 15:58:42
阅读次数:
342
MainActivity如下:
package cc.cn;
import java.util.HashMap;
import org.json.JSONObject;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import com.android.volley....
分类:
移动开发 时间:
2014-05-18 15:18:31
阅读次数:
297
#ifndef __APP_WEBSOCKET_FRAME_H__
#define __APP_WEBSOCKET_FRAME_H__
#include "memory.hpp"
class buffer;
struct websocket_frame
{
websocket_frame();
~websocket_frame();
static const unsigned int f...
分类:
Web程序 时间:
2014-05-18 09:37:29
阅读次数:
332
接下来,我们接着去学习如何去接收处理web上传的数据
1 首先我们创建一个
@interface WTZHTTPConnection :
HTTPConnection
在这个类中我们用于处理接受文件并存储到app文档
同时不要忘记了设置httpserver的Connectio类
[httpServer setConnectionClass:[WTZHTTPConnection...
分类:
其他好文 时间:
2014-05-18 05:42:28
阅读次数:
501
this bundle is invalid . new apps and app updates submitted to the app store must be built with public...
分类:
移动开发 时间:
2014-05-18 04:57:16
阅读次数:
341
MainActivity如下:
package cc.y;
import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Bitmap.Config;
import android.os.Bundle;
import and...
分类:
移动开发 时间:
2014-05-18 03:54:44
阅读次数:
365
转载地址:http://blog.csdn.net/yohunl/article/details/5971252
在编译好的真机版目录下的.app文件,至于生成真机可以运行的app的方法,有两种方式,一种是交99美元获得一个证书,另外一种是破解的方式,在此不再详述,本文假设你已经生成了真机上可以运行...
分类:
移动开发 时间:
2014-05-17 22:23:35
阅读次数:
478