English 中文(简体)
监监委最佳做法[关闭]
原标题:NSURLConnection MVC Best Practices [closed]
Closed. This question is opinion-based. It is not currently accepting answers.

想要改进这个问题吗? 更新问题,以便用

Closed 5 years ago.

我试图在我的应用程序中找到执行监查系统设计的最佳方法。 当一个用户进入了UITVoctor时, 我向我的模型发送了一个请求, 请求去互联网下载一些数据。 当数据返回时, 我希望它更新数据, 即使我的UITVoctor( 由用户关闭视图, 或退出它) 处理 。 所以目前我更新了模型, 然后在“ 更新 UITVoctor ” 的模型上有一个代表。 基本上在数据返回后, 我希望该模型能够调用 [ TableVloadData], 并且我和一个代表一起完成这个任务 。

我的问题:

  1. 这一定是正确的方式吗?我的模型还有什么其他方法可以调用我的UIViewC主计长的方法吗?

  2. 如果我想让多个查看控制器在模型被更改时得到通知...例如,如果我退出UITViewcontrol1,然后浏览到UITViewcontrol2,然后使用同样的模型/数据。我是否应该用我的模型来创建多个代表?

只是寻找一些最佳做法,并想知道我这样做是否正确。

提前感谢。

最佳回答

https:// developer.apple.com/library/mac/#document/Cocoa/Reference/Foundation/Classes/NSnotific_Class/Reference/Reference.html" rel=“noforporation 提醒听众这些变化,或者Key-Value观察 (KVO) 。两者都是 这解释了区别 。

我敢打赌,你会做手动通知, 所以你会做:

[self willChangeValueForKey:@"something"];
... // update  something  here
[self didChangeValueForKey:@"something"];

观察员会得到通知。 自动方法要求使用您可能不会在内部使用的属性方法。 通常KVO适用于模型的单一属性, 当然, 模型发送通知时可能有很多。 如果您再做一些类似“ 我刚刚完成程序X ” 的动作, 它可能更像是NSN通知。

问题回答

回答问题2 - 如果您有某种物体,应通知某事件,应使用 NS通知(观察员模式) 。这有助于您使这些物体以简单易用的方式作出反应、更新其观点或更新其观点





相关问题
Asynchronous request to the server from background thread

I ve got the problem when I tried to do asynchronous requests to server from background thread. I ve never got results of those requests. Simple example which shows the problem: @protocol ...

objective-c: Calling a void function from another controller

i have a void, like -(void) doSomething in a specific controller. i can call it in this controller via [self doSomething], but i don t know how to call this void from another .m file. I want to call ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

NSUndoManager and runModalForWindow:

I have a simple Core Data app which displays a list of entities in the main window. To create or add new entities, I use a second modal window with a separate managed object context so changes can be ...

NSMutableArray values becoming "invalid"

I m trying to show a database information in a tableview and then the detailed information in a view my problem is as follow: I created a NSMutableArray: NSMutableArray *myArray = [[NSMutableArray ...

iPhone numberpad with decimal point

I am writing an iPhone application which requires the user to enter several values that may contain a decimal point (currency values, percentages etc.). The number of decimal places in the values ...

热门标签