In my ios 8 keyboard extension I wanna check did user gave my keyboard open access or not. But I couldn't find any API. Swiftkey and other custom keyboards somehow solve that problem
I think this is an easier way (no need to create a container):
- (BOOL) isOpenAccessGranted
{
if ([UIPasteboard generalPasteboard])
return YES;
return NO;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With