api是否有声音可以获得延迟焦点状态?

时间:2017-07-15 07:20:06

标签: ios objective-c

我是iOS的新手。我制作的应用程序包括语音功能。我的应用程序由表格视图中的集合视图组成。该应用程序有复选框(没有按钮只是图像),并显示已选中/未选中状态。

当我选中复选框,然后发出声音。 - > [self.checkBoxImageView setAccessibilityHint:@" ~~~~"];
第一次尝试时正确操作(语音翻阅),但第二次后,语音翻阅反转
如何修改以修复我想要操作的代码。
在下面附上我的代码。
= =========================第一个功能=================== ==

- (void)setChecked:(BOOL)checked {
NSLog(@"%s, checked = %d", __func__, _checked);
NSLog(@"[D] checked : %d", checked);
// Save property value
_checked  = checked;

// Update checkbox image
NSString * filename;

if(checked)
{
    filename = [[NSBundle bundleForClass:[self class]] pathForResource:@"check_on" ofType:@"png"];
    [self.checkBoxImageView setAccessibilityHint:@"Checked"];

}
else
{
    filename = [[NSBundle bundleForClass:[self class]] pathForResource:@"check_off" ofType:@"png"];
    [self.checkBoxImageView setAccessibilityHint:@"Unchecked"];
}

[self.checkBoxImageView setImage:[UIImage imageWithContentsOfFile:filename]];

NSLog(@"[D] self.checkBoxImageView setImage:[UIImage");
self.checkBoxImageView.frame = CGRectMake(12, 12, 50/2, 50/2);
NSLog(@"[D] self.checkBoxImageView.frame = CGRectMake");
}

=========================另一个功能==================== =====

- (void) collectionView:(UICollectionView *)cv didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"%s", __func__);
    NSLog(@"%@", indexPath.description);

    //[collectionView deselectItemAtIndexPath:indexPath animated:YES];
    //// Get selected cell
    //MYCell* cell = (MYCell*) [collectionView cellForItemAtIndexPath:indexPath];

    [cv deselectItemAtIndexPath:indexPath animated:NO];
    // Get selected cell
    MYCell* cell = (MYCell*) [cv cellForItemAtIndexPath:indexPath];

//    if (cell.checked == NO)
//        cell.checked = YES;
//    else if (cell.checked == YES)
//        cell.checked = NO;

    // Check if set contains selected cell indexPath
    if([self.checkedIndexPaths member:indexPath])
    {
        // User tapped on checked cell
        // Remove selected indexPath from set
        [self.checkedIndexPaths removeObject:indexPath];

        // Uncheck checkbox on cell
        cell.checked = NO;
    }
    else // User tapped on unchecked cell
    {
        // Add selected indexPath to set
        [self.checkedIndexPaths addObject:indexPath];

        // Check checkbox on cell
        cell.checked = YES;
    }


}

1 个答案:

答案 0 :(得分:0)

辅助功能提示旨在提供有关元素功能的额外信息。因此,语音系统假定内容将主要保持静态(除非页面布局发生变化)。另请注意,即使启用了语音模式,许多用户也会将其关闭。

在这种情况下,您应该设置的属性是jboss-logging.jarApple doc)。这用于元素中的动态内容,例如UITextField中的文本。