Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS 5 Storyboard comments

Is there a way to add a comment on the iOS storyboards? Currently we have a project in which several people are working on the same interface and it would be very helpful to be able to write in the storyboard itself, so you can leave a note to others or to put stuff to remember later.

Something like a bubble with a message on it like "Mark, please fix the logout button, change it to red". Is there something like this? I can't found it.

like image 605
clopez Avatar asked Nov 13 '22 08:11

clopez


1 Answers

Not that I have heard of. My suggestion is to use a View Controller that isn't connected to the other scenes and have a textview in there that you write on.

The other thing you can do in the implementation file is to use a

#warning Mark, please fix the logout button

directive

This would show up as a warning whenever the project is built or run.

like image 153
LJ Wilson Avatar answered Nov 21 '22 18:11

LJ Wilson