Is this efficient?
Do you really mean efficient? Or rather "effective"? I think so. Let's see:
Does NSUserDefaults save stuff to disk every time I set a new value or it save it only when synchronize method is called?
Neither. It saves its data periodically, so not every time when you set it, and not only when you call - synchronize. But, if you want to be 100% absolutely sure that your changes are saved, you can either:
call - synchronize after setting a group of data every time, or
call - synchronize in the methods only which get called when your application is about to move into the background or to terminate. This way your data will always be safe.
Edit: So you were asking about efficiency for real. Well, since NSUserDefaults behaves as I described, you don't have to worry, it won't perform 100 writes to disk per second, and since you stated that you're calling synchronize before application termination, your data is also safe.