---
title: IgnoresDisplayFrequency
framework: tipkit
role: symbol
role_heading: Type Alias
path: tipkit/tip/ignoresdisplayfrequency
---

# IgnoresDisplayFrequency

Controls whether a tip obeys the preconfigured display frequency interval.

## Declaration

```swift
typealias IgnoresDisplayFrequency = Tips.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)     } }

## See Also

### Customizing tip behavior

- [options](tipkit/tip/options.md)
- [Option](tipkit/tip/option.md)
- [MaxDisplayCount](tipkit/tip/maxdisplaycount.md)
- [MaxDisplayDuration](tipkit/tip/maxdisplayduration.md)
