Apple-skills uikit

API reference: UIKit. Query for UIView, UIViewController, controls, table and collection views, navigation controllers, scenes, Auto Layout, images, colors, gestures, presentation, and SwiftUI hosting.

install
source · Clone the upstream repo
git clone https://github.com/vabole/apple-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/vabole/apple-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/uikit" ~/.claude/skills/vabole-apple-skills-uikit && rm -rf "$T"
manifest: skills/uikit/SKILL.md
source content

UIKit Reference

UIKit framework documentation for iOS and iPadOS apps.

Downloaded Reference Files

Search the local files first.

uikit-overview.md
is the full framework index and is large, so prefer
rg
over opening it directly.

FileContent
uikit-overview.mdFull UIKit framework index
uikit-updates.mdUIKit updates
uiapplication.mdUIApplication
uiapplicationdelegate.mdUIApplicationDelegate
uiwindowscene.mdUIWindowScene
uiview.mdUIView
uiviewcontroller.mdUIViewController
uicontrol.mdUIControl
uibutton.mdUIButton
uilabel.mdUILabel
uiimage.mdUIImage
uiimageview.mdUIImageView
uicolor.mdUIColor
uifont.mdUIFont
uiscrollview.mdUIScrollView
uitableview.mdUITableView
uicollectionview.mdUICollectionView
uistackview.mdUIStackView
nslayoutconstraint.mdNSLayoutConstraint
uinavigationcontroller.mdUINavigationController
uitabbarcontroller.mdUITabBarController
uisplitviewcontroller.mdUISplitViewController
uigesturerecognizer.mdUIGestureRecognizer
uialertcontroller.mdUIAlertController
uiactivityviewcontroller.mdUIActivityViewController
uivisualeffectview.mdUIVisualEffectView
uiblureffect.mdUIBlurEffect
uihostingcontroller.mdUIHostingController bridge from SwiftUI
using-swiftui-with-uikit.mdUsing SwiftUI with UIKit

Fetching More Docs

  1. Search this skill's local
    .md
    files first.
  2. If the topic is not here, check the other installed Apple skills you have available by their names, descriptions, or
    SKILL.md
    frontmatter, then grep their local files. This is faster and uses less context than fetching new docs from the internet.
  3. If no installed skill has the page, use the relevant documentation path from
    uikit-overview.md
    with the
    sosumi.ai
    Markdown mirror. For example,
    /documentation/uikit/uiview
    maps to
    https://sosumi.ai/documentation/uikit/uiview
    .

Some UIKit-adjacent APIs live in other frameworks. For example,

UIHostingController
is documented under SwiftUI.