本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
UIAlert的宏写法
#define SHOWALERT(meg) {UIAlertView *alert=[[[UIAlertView alloc]initWithTitle:nil message:meg delegate:nil cancelButtonTitle:@"取消" otherButtonTitles: nil,nil]autorelease];[alert show];}
自定义UIAlertView
iPhone SDK提供的UIAlertView用以显示消息框,默认的消息框很简单,只需要提供title和message以及button按钮即可,而且默认情况下所有的text是居中对齐的。 那如果需要将文本向左对齐或者添加其他控件,例如输入框时该怎么办呢?不用担心,iPhone SDK还是很灵活的,有很多delegate消息供调用程序使用。所要做的就是在- (void)willPresentAl ...
iphone 弹出加载中对话框 UIAlertView
//显示加载中对话框
- (void)dialogShow {
baseAlert = [[UIAlertView alloc] initWithTitle:@"Please Wait" message:@"\n\n\n" delegate:self cancelButtonTitle:@"close" othe ...
iOS5中的UIAlertView
iOS5中提供了几种便利的UIAlertView,如下所示:
- (IBAction)showDefaultAlertView:(id)sender {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"DefaultStyle"
...
UIAlertView的使用方法
UIAlertView类似于android中的对话框 或 AlertDialog ,但是,ios中使用起来要麻烦得多。
下面这段代码是一段典型的应用:
UIAlertView *alert =[[UIAlertView alloc] initWithTitle:@"hello"
message:@"ipad ,i come"
...
自定义UIAlertView(UITableView)
UIAlertTableView.h
#import <UIKit/UIKit.h>
@class UIAlertView;
@interface UIAlertTableView : UIAlertView {
UIAlertView *alertView;
UITableView *tableView;
int tableHeight;
in ...
自定义UIAlertView(UIPickerView)
头文件:
#import <UIKit/UIKit.h>
@interface CustomPickerView : UIAlertView <UIPickerViewDataSource, UIPickerViewDelegate> {
NSArray *majorNames;
NSArray *grades;
UIPick ...
wait_fences: failed to receive reply: 10004003奇怪的错误
今日遇到wait_fences: failed to receive reply: 10004003奇怪的错误。
上网找资料发现都有朋友遇到一样的错误:
======
最近老是遇到这个错误,经过研究发现是由于UIAlertView显示的时候导致UITextField失去焦点,而键盘没有消失引起的。
我的伪代码是:
UIAlertView show
UITextField becomeFirstRes ...
保存图片到相册
//接口中定义这个方法,然后在实现类中实现他
- (void)imageSavedToPhotosAlbum:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *) contextInfo;
//实现类中实现
- (void)imageSavedToPhotosAlbum:(UI ...
创建没有按钮的UIAlertView
默认的UIAlertView都有一个或者多个按钮,如果你想创建没有按钮的UIAlertView,可以使用以下方法:
UIAlertView *alert;
alert = [[[UIAlertView alloc] initWithTitle:@"\r\rConfiguring Preferences\rPlease Wait..."
message:nil d ...
弹出对话框的使用
实现方法和操作表十分类似,先在类定义的时候加上UIAlertViewDelegate,用于以后处理按钮事件。
@interface testController : UIViewController <UIAlertViewDelegate> {...}
调用方法如下
UIAlertView *alert = [[UIAlertView alloc]
i ...