0

これらのリンクの両方の指示に従いました。

カスタムキーボードでキーボードのクリック音を鳴らすには?

https://developer.apple.com/library/ios/documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/InputViews/InputViews.html

そして、次のことを行いました:

ヘッダ:

@interface Key : UIView <UIInputViewAudioFeedback>

実装:

- (BOOL) enableInputClicksWhenVisible {
    return YES;
}

- (void)tapped:(UITapGestureRecognizer *)sender
{
    [[UIDevice currentDevice] playInputClick];
    [self.delegate keyHit:_title];
}

それでもまだ機能していません。私は何を逃したのですか?

4

2 に答える 2

1

キーボード拡張アプリに「RequestsOpenAccess」フィールドが含まれている場合、キーボードのクリック音は、[ 一般] > [キーボード] > [キーボード] > [Your_keyboard] 設定
から [フル アクセスを許可] スイッチをオンにする必要があります。

Off の場合、キーボードのキー音を再生できません。

于 2015-05-11T13:47:01.463 に答える
1

キーボード拡張機能でシステム クリック サウンドを再生したい場合は、いつでもこのコードを試してください。

+ (void)keyboardClickSound {

    // Check system preference for current setting of Keyboard Click Sound.
    CFStringRef applicationID = CFSTR("/var/mobile/Library/Preferences/com.apple.preferences.sounds");
    Boolean keyExistsAndHasValidFormat;
    BOOL enableInputClicks
    = CFPreferencesGetAppBooleanValue(CFSTR("keyboard"), applicationID, &keyExistsAndHasValidFormat);

    // Note: If the key does not exist because it has never been changed by a user,
    //       set it to the default, YES.
    if (!keyExistsAndHasValidFormat)
        enableInputClicks = YES;

    // Play Keyboard Click Sound, if enabled.
    // Note: If Open Access=Off, no click sound.
    if (enableInputClicks)
        dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),
                   ^{ AudioServicesPlaySystemSound(1104); });
}
于 2015-05-10T15:24:50.907 に答える