Void Main
Void Main

Reputation: 2291

How to put InAppPurchase settings in settings bundle?

I'm trying to add in app purchase to my app. According to apple's documentation, I have to implement my own purchase view or related stuff.

And currently in my app, I've used Settings.Bundle to implement the setting items, and I want to add IAP button here, how can I do this?

Upvotes: 0

Views: 55

Answers (1)

Dmitry Shevchenko
Dmitry Shevchenko

Reputation: 32404

You can't, settings is only a fixed set of controls, there's no logic to load, validate and process your purchases. You will have to write your own UI for that.

Upvotes: 1

Related Questions