Simon Eliasson
Simon Eliasson

Reputation: 1305

Do local notifications in iOS require a developer account?

I've discovered that Push notifications require me to first have a developer account in order to activate them in xCode. Is this also true for local notifications?

Thanks!

Upvotes: 2

Views: 2037

Answers (4)

manismku
manismku

Reputation: 2180

local notification doesn't requires you to have developer account to test somethign on simulator. However, you still need developer account if you want this feature to test on actual device.

Upvotes: 0

Aditya Srivastava
Aditya Srivastava

Reputation: 2650

No local notifications doesn't require an apple developer account. As it doesn't makes sense also because no where you will be connecting with APNs or you will be requiring any token or any other thing

Any app if you want to be in device whether it's configured with local notification or not you want a developer account.

Upvotes: 0

Hooda
Hooda

Reputation: 1187

If you want to test local or push notification in device, you will need to create certificates and profiles which do require developer account.

If you want to test local notification in simulator, then you won’t need developer account. Push notification cannot be tested in simulator, so you will need to have developer account in order to test in device.

Upvotes: 4

Mohamad Bachir Sidani
Mohamad Bachir Sidani

Reputation: 2099

Local notifications do not require anything.

However push notifications do require.

Hope this helps!

Upvotes: 1

Related Questions