上一页 1 ··· 7 8 9 10 11
摘要: About App DistributionThis guide explains how to develop, test, submit, and release your iOS and Mac apps. By understanding your tools and the distribution process, you’ll be able to get your new app and updates to your customers faster. 本指南解释了如何开发(develop)、测试(test)、递交(submit)和发布(release)你的iOS 和Ma.. 阅读全文
posted @ 2013-05-28 18:16 cainiaozhang 阅读(1055) 评论(1) 推荐(0) 编辑
摘要: #include<stdio.h>#include<string.h>#include<stdlib.h>#include<sys/types.h>#include<sys/stat.h>#include<dirent.h>#include<fts.h>#define MAX 300struct file{ char* file_name; long long file_size;};struct file files_in_dir[MAX];void travDir(char* dir_s, struct f 阅读全文
posted @ 2013-05-13 20:38 cainiaozhang 阅读(558) 评论(0) 推荐(0) 编辑
摘要: 一、FTS_OPEN FTS * fts_open(char * const*path_argv, int options, int (*compar)(const FTSENT **, const FTSENT **)); 函数fts_open()接受一个指向数组的指针,字符指针命名了一个或多个路径组成了要遍历的逻辑文件层次。数组必须以NULL指针结束。 这有很多选项,但是至少它们(FTS_LOGICAL 或 FTS_PHYSICAL)中的一个必须被指定。options 包含以下值: FTS_COMFOLLOW 此option把任何指定的符号链接作为一个根路径... 阅读全文
posted @ 2013-05-10 16:45 cainiaozhang 阅读(2868) 评论(0) 推荐(0) 编辑
摘要: public classDisplayMetricsextendsObjectjava.lang.Object↳android.util.DisplayMetrics类概述描述一个显示屏的基本信息,像尺寸,密度,字体缩放等.获取DisplayMetrics成员,初始化对象:DisplayMetrics metrics =newDisplayMetrics();getWindowManager().getDefaultDisplay().getMetrics(metrics);概述一、常量 int DENSITY_DEFAULT 整个系统使用的参考密度,系统默认参考密度 int DENSI... 阅读全文
posted @ 2013-05-10 11:53 cainiaozhang 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 一、名称 fts -- 遍历一个文件层次二、库 标准C库(libc, -lc)三、说明书 #include <sys/types.h> #include <sys/stat.h> #include <fts.h> FTS * fts_open(char * const*path_argv, int options, int (*compar)(const FTSENT **, const FTSENT **)); FTS *fts_open_b(char * const *path_argv, int options, in... 阅读全文
posted @ 2013-05-09 18:02 cainiaozhang 阅读(1660) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11