ios - Use of custom delegate vs NSNotification vs NSUserDefaults state -


in app i'm using nsuserdefaults give state performing operations based on state. in other places i'm using nsnotification-s fire methods in other classes. feel 1 example better use custom delegate.

what benefits , drawbacks using nsnotification vs custom delegate vs i'm doing nsuserdefaults?

my question intends address performance or potential issues between using nsuserdefaults give state compared calling methods using either protocols or nsnotificationcenter.

it's important remember nsuserdefaults persists data. when read , write nsuserdefaults, you're reading , writing to/from disc. whenever use nsuserdefaults should ask "is needs persisted between app launches? could/should thing without writing disc?" (note performance: any time have go disc something, expect take longer time)

nsuserdefaults ideal things app settings. app have multiple color schemes user can choose from? store preferences in user defaults , them later.

i put nsuserdefaults in different category other communication patters, delegation, notifications, blocks, kvo, target-action.

here's awesome article communication patterns in ios: http://www.objc.io/issue-7/communication-patterns.html . goes detail on each 1 , do, , i've found flow-charts useful. article talks kvo (key-value observing) , blocks (closures in swift).

delegate:

delegate

one big difference between two, logic branches in flow-chart, whether recipient knows sender. you'll hear notifications talked one-to-many communication delegation one-to-one.

notifications: enter image description here


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -