jonnyv
jonnyv

Reputation: 301

Making headers public in Xcode Framework

Is there a fast way to make headers public when setting up a Framework in Xcode? I always have to click through one by one, changing each one from private to public. This irks me. Thanks.

Upvotes: 3

Views: 2665

Answers (1)

Thomas Zoechling
Thomas Zoechling

Reputation: 34263

  1. Cmd-Click all header files you want to modify in the group tree.
  2. Ctrl-Click them an choose "Set Role" -> "Public"

Upvotes: 3

Related Questions