---
title: IgnoresDisplayFrequency
framework: tipkit
role: symbol
role_heading: Structure
path: tipkit/tips/ignoresdisplayfrequency
---

# IgnoresDisplayFrequency

Controls whether a tip obeys the preconfigured display frequency interval.

## Declaration

```swift
struct IgnoresDisplayFrequency
```

## Overview

Overview Use this option to allow a tip to appear even if the displayFrequency(_:) has not been satisfied. The default value of this option is false. struct FavoriteBackyardTip: Tip {     var options: [any Option] {         IgnoresDisplayFrequency(true)     } }

## Topics

### Initializers

- [init(_:)](tipkit/tips/ignoresdisplayfrequency/init(_:).md)

## Relationships

### Conforms To

- [Option](tipkit/tipoption.md)
- [Sendable](swift/sendable.md)
- [SendableMetatype](swift/sendablemetatype.md)

## See Also

### Options

- [MaxDisplayCount](tipkit/tips/maxdisplaycount.md)
- [MaxDisplayDuration](tipkit/tips/maxdisplayduration.md)
