我有一个主视图, 它将设置面板调用为另一个视图, 与页面曲线转换 。 似乎一切都很好, 但当我关闭设置视图时, 它不会触发我主视图的“ view WillAppear” 方法, 引起很多麻烦, 因为它无法根据设置更新 。
有个
提前感谢。
我有一个主视图, 它将设置面板调用为另一个视图, 与页面曲线转换 。 似乎一切都很好, 但当我关闭设置视图时, 它不会触发我主视图的“ 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.
我希望这能帮助解决你的问题
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 ...
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 ...
Is there any way to obfuscate Objective-C Code ? Thanks
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 ...
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 ...
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 ...
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 ...
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 ...