- 浏览: 172019 次
最新评论
-
东京大师:
您好,您现在从事的是什么职业啊
JetBrains PyCharm 2.0 注册机 -
linzcup:
官网http://www.huluwa.org/icloud/ ...
iCloud存储的API -
linzcup:
本文主要面向使用DateSync的开发者,开发者可通过此文学习 ...
iCloud存储的API -
linzcup:
WINDOWS版与ANDROID版的icloud 客户端API ...
iCloud存储的API -
19870125:
你好。在线播放音频的是怎么做的呢?
iPhone 应用开发:音频播放
文章列表
Element
Size (in pixels)
Window (including status bar)
320 x 480px
Status Bar(How to hide the status bar)
20 px
View inside window(visible status bar)
320 x 460
Navigation Bar
44 px 横屏32px
Nav Bar Image /Toolbar Image
up to 20 x 20 px (transparent PNG)
Tab Bar
49 px
...
userinfo表id需要实现自增效果
1.创建序列
-- Create sequence
create sequence seq_userinfo
minvalue 1
start with 1
increment by 1;
2.创建触发器
create or replace trigger tigger_userinfo
before insert on userinfo
for each row
declare
begin
select SEQ_userinfo.nextval into:New.id from dual;
...
http://github.com/akosma/async-uitableview
http://kosmaczewski.net/2009/03/08/asynchronous-loading-of-images-in-a-uitableview/
public static void main(String[] args) throws UnsupportedEncodingException {
String address = URLEncoder.encode("北京 香山公园","UTF-8");
String url = "http://maps.google.cn/maps/geo?q="+address+"&output=csv&oe=utf8\\&sensor=true_or_false&key=ABQI ...
来自: http://blackpearl.iteye.com/blog/364246
谷歌地图(交通地图)上并没有显示某个地址的经纬度,实际上,我们已经想到了一个办法,可以找到在谷歌地图上任意地点的经度和纬度。
首先打开Google地图,在上面寻找一个地址,然后上下左右移动地图,让这个地址正好处于地图的正中心位置,当您想寻找坐标位置已经处于地图的中心位置的时候,拷贝并粘贴以下代码到你的浏览器地址栏:
javascript:void(prompt('',gApplication.getMap().getCenter()));
这时,你将得到一个弹出式的坐标,这个坐标就是你需要 ...
#import <UIKit/UIKit.h>
@interface MoreAppViewController : UITableViewController {
UIActivityIndicatorView * activityIndicator;
NSXMLParser *xmlParser;
NSMutableArray *appList;
NSMutableDictionary *item;
NSString *currentElement;
NSMutableString *name, *description, *p ...
Author: fallhunter
摘自:http://www.fallhunter.com/p/10140
在iphone开发中处理table时常常会有这样的问题,table中cell的高度不是固定的,而是是根据其中的内容不同而不同的。对与这种情况,sdk本身并没有很好的支持,经过一翻摸索,发现大家通常的做法都是在实现 heightForRowAtIndexPath 方法时,根据内容计算出来显示的高度。
幸运的是,nsstring内置了几个好用的函数可以方便的计算出来字符串被现实出来时占有的屏幕高度:
- (CGSize)sizeWithFont:(UIFont *)font con ...
Tab bar提供了隐藏功能。下面的方法,不建议使用了!
NSArray *views = [tabBarController.view subviews];
for(id v in views){
if([v isKindOfClass:[UITabBar class]]){
[(UITabBar *)v setHidden:YES];
}
}
还有一个方法是:
把TabBar.view的frame设置到大于屏幕的大小,让TabBar显示到屏幕的最下方之外哦区域
[view setFram ...
View类的层次结构
- 博客分类:
- iOS
該圖出自iPhoneOSProgrammingGuide, chapter_7_section_2
MBProgressHUD是替代UIProgressHUD的一个小工具,使用方法也非常简单。
下载地址是: http://github.com/matej/MBProgressHUD
#import <UIKit/UIKit.h>
#import "MBProgressHUD.h"
@interface HudDemoViewController : UIViewController <MBProgressHUDDelegate> {
MBProgressHUD *HUD;
}
- (IBAction) showWithLab ...
Create an images directory
Create an images Group in Xcode
Right-click the group and Get Info
"Choose..." to set the group's directory to be your images directory
[UIApplication sharedApplication].idleTimerDisabled = YES;
- 2009-08-16 08:37
- 浏览 1107
- 评论(0)
摘自:http://beike.iteye.com/blog/402449
NSBundle* bundle = [NSBundle mainBundle];
NSString* resPath = [bunder resourcePath];
NSString* filePath = [resPath stringByAppendPathComponent:@"test.html"];
[WebView loadHTMLString:[NSString stringWithContentsOfFile:filePath] base ...
NSData *dataForCachedImage = [[NSData alloc] initWithBytes:sqlite3_column_blob(yourLoadingSQLStatement, 2) length: sqlite3_column_bytes(yourLoadingSQLStatement, 2)]; self.cachedImage = [UIImage imageWithData:dataForCachedImage];[dataForCachedImage release];
- 2009-08-10 20:50
- 浏览 913
- 评论(0)
一个是采用SQLCipher
Need to store sensitive information in your app? SQLCipher extends SQLite enabling transparent encryption and decryption of data using AES. Its source is available on Github.
SQLite is pluggable. Developers can create extensions and chain them into SQLite’s engine. Using this mecha ...
- 2009-08-09 09:37
- 浏览 2450
- 评论(0)