English 中文(简体)
目标-C - 检测在页面卷卷后屏蔽视图
原标题:Objective-C - Detect dismiss of a view after page curl

我有一个主视图, 它将设置面板调用为另一个视图, 与页面曲线转换 。 似乎一切都很好, 但当我关闭设置视图时, 它不会触发我主视图的“ view WillAppear” 方法, 引起很多麻烦, 因为它无法根据设置更新 。

有个 回答 对我来说似乎不错,但我不知道如何执行。还有另外一个简单的方法或谁可以向我解释如何应用这个答案?

提前感谢。

最佳回答

而不是对视图作出反应, 您也许应该对设置变化作出反应。 我的意思是, 使用 < a href=" http:// developmenter. apple. com/library/mac/#documentation/ Cocoa/Confitual/KeyValueObserv/KeyValueObsession.html" rel=“ nofollow noreferrer" >Key-Valueservor (KVO) 将会是一个更可靠的设计, 以便您能够被告知您对代表您设置的对象的更改 。

Alternatively, if you can t or don t want to observe a specific object, you can use NSNotificationCenter and have your settings view fire a notification when the new settings are applied and your other view can register to listen to those notifications. Here is a simple example of that.

我希望这能帮助解决你的问题

问题回答

暂无回答




相关问题
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 ...

热门标签