#Ronit

1 messages · Page 1 of 1 (latest)

wispy abyssBOT
lusty fractal
#

Hi! Let me help you with this.

thin kraken
#

can you provide me for ios

thin kraken
#

can you provide me example which have sample code for get status during regular interval for ios

lusty fractal
#

I am not that familiar with Swift, but it should be just a normal loop with a timeout, nothing Stripe-specific.

thin kraken
#

ohk thanks let me try that

lusty fractal
#

Something like this:

// Define the interval time in seconds  
let interval = 10.0  
  
// Create the timer object  
var timer = Timer()  
  
// Define the function to be executed by the timer  
@objc func runCheckStatus() {  
    checkStatus()  
}  
  
// Schedule the timer to run the function at regular intervals  
timer = Timer.scheduledTimer(timeInterval: interval, target: self, selector: #selector(runCheckStatus), userInfo: nil, repeats: true)  
thin kraken
#

yes i am working same like this

#

does stripe have any method for check low battery level

thin kraken
#

thanks is worked and now i am working on update installation for that install software method is used right ?

lusty fractal
#

What do you mean exactly?

thin kraken
#

how can i install software of reader when it's available

lusty fractal
#

Are you following some guide?

wispy abyssBOT
thin kraken
#

yes

lusty fractal
#

Which one?

lusty fractal