---
title: isContinuousAutoFocusTrackingSubjectAcquired
framework: AVFoundation
role: symbol
role_heading: Instance Property
platforms: [iOS 27.0+, iPadOS 27.0+, Mac Catalyst 27.0+, macOS 27.0+, tvOS 27.0+]
path: avfoundation/avcapturedevice/iscontinuousautofocustrackingsubjectacquired
---

# isContinuousAutoFocusTrackingSubjectAcquired

Indicates whether the device is actively tracking a subject in the scene to maintain focus.

## Declaration

```swift
var isContinuousAutoFocusTrackingSubjectAcquired: Bool { get }
```

## Discussion

Discussion Returns true when the capture device is actively tracking a subject in the scene, and false otherwise. The subject is initially identified by focusPointOfInterest when focus mode is set to AVCaptureFocusModeContinuousAutoFocus with isContinuousAutoFocusTrackingEnabled set to true. This property is key-value observable and reflects only whether a subject is actively tracked, not which one. To identify the tracked subject, include focusTrackedObject in the metadataObjectTypes of AVCaptureMetadataOutput. The AVMetadataFocusTrackedObject delivered by the metadata output represents the subject currently tracked for continuous autofocus.
