user142019
user142019

Reputation:

IBOutlet in Python

Is there a way to use a Cocoa IBOutlet in Python? Or do I need to do this in ObjC? Thanks in advance.

Upvotes: 0

Views: 193

Answers (1)

Peter Hosey
Peter Hosey

Reputation: 96333

This article (found by searching Google for “pyobjc iboutlet”) has an example. Basically, you create objc.IBOutlet objects and set them as the values of class variables.

Upvotes: 1

Related Questions