如何在iPhone应用程序中打开“编辑联系人"窗口? [英] How to open the Edit contact window in iphone app?

查看:62
本文介绍了如何在iPhone应用程序中打开“编辑联系人"窗口?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在通过Addcontact点击从我的iPhone应用程序添加联系信息.我只想在同一Addcontact单击上打开编辑联系人"窗口,以便用户可以编辑或删除刚刚添加的联系人.我已经做了如下的事情.

I am adding contact info from my iPhone application on Addcontact click. I just want to open edit contact window on same Addcontact click so user can edit or delete the contact which just now have added. I have done smthing like below..

- (IBAction)AddContact
 {   
ABAddressBookRef addressBook = ABAddressBookCreate();
ABRecordRef Showroom = ABPersonCreate();

//adding contact name as showroom name

ABRecordSetValue(Showroom, kABPersonFirstNameProperty, ShowroomName.text , nil);
   ABAddressBookAddRecord(addressBook, Showroom, nil);
ABAddressBookSave(addressBook, nil);
// Fetch the address book 
//ABAddressBookRef addressBook = ABAddressBookCreate();
// Search for the person named "Appleseed" in the address book

    //ABRecordRef Showroom = (ABRecordRef)[Showroom objectAtIndex:0];
    ABPersonViewController *picker = [[[ABPersonViewController alloc] init] autorelease];
    picker.personViewDelegate = self;
    picker.displayedPerson = Showroom;
    // Allow users to edit the person’s information
    picker.allowsEditing = YES;
[self.navigationController pushViewController:picker animated:YES];
}

这是我的Map应用程序.在启动时,我会获得与联系人的展示厅结果.我可以通过打开编辑联系人窗口将其添加到iPHone联系人中.但是,当我打开其他控制器以将用户选择的字符串地址传递给Map控制器以搜索陈列室位置时.上面相同的代码不起作用.我的意思是,它仅添加联系人,但没有得到编辑联系人窗口.

this is my Map application. On launching I get showroom results with there contacts. This I can add in to the iPHone contact with edit contact window opening. But when I open other controller to pass user selected string address in to Map controller to search showroom location. The same above code is not working. I mean it only add the contacts but I didnt get the edit contact window.

修改:可能是因为导航控制器栏有问题,所以也请检查以下代码

May be this problem is regarding navigation controller bar so check the below code also

- (void)viewWillAppear:(BOOL)animated 
   {
  [self.navigationController setNavigationBarHidden:YES animated:animated]; 
   } 
   - (void)viewDidLoad {

[self.navigationController setNavigationBarHidden:NO ];
self.navigationController.navigationBar.tintColor = [UIColor  colorWithRed:25.0/255.0f green:25.0/255.0f blue:25.0/255.0f alpha:1.0f];
   }
- (void)viewWillDisappear:(BOOL)animated
{ 
[self.navigationController setNavigationBarHidden:NO animated:animated];
 }

推荐答案

我希望这段代码对您有用,我实现了该代码,并且在我的应用程序中效果很好

I hope this code is works for you i implements that code and in my application works fine thank you

contecviewcontroller.h
@interface DetailsViewController : UIViewController
DocumentNavController *coffeeObj;
editViewController *evController;
int currentindex;
}

@property (nonatomic, retain) DocumentNavController *coffeeObj;
@property (readwrite, assign) int currentindex;    
@end

contecviewcontroller.m

contecviewcontroller.m

- (void)viewDidLoad {
  [super viewDidLoad];
//self.navigationController.toolbar.tintColor = [UIColor darkGrayColor];
self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc]
                                           initWithBarButtonSystemItem:UIBarButtonSystemItemEdit 
                                           target:self action:@selector(goToEdit)]autorelease];
}


-(void)goToEdit{

if(evController == nil)
    evController = [[editViewController alloc]initWithNibName:@"editViewController" bundle:nil];
evernoteAppDelegate *appdelegete = (evernoteAppDelegate *)[[UIApplication sharedApplication]delegate];
coffeeObj = [appdelegete.noteArray objectAtIndex:currentindex];

evController.Editcurrentindex = currentindex;
evController.docedObj = coffeeObj;
[self.navigationController pushViewController:evController animated:YES];
}

这篇关于如何在iPhone应用程序中打开“编辑联系人"窗口?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆