iPhone用のシンプルなアプリを作成しようとしています。テキストフィールドなどのコンポーネントが取り込まれたストーリーボードがあります。ViewController.h で、ストーリーボードからコンポーネントをドラッグ アンド ドロップしてプロパティを作成します。これを行うと、矢印の形のポインターが表示されます。しかし、私の場合、アイテム自体をドラッグします。それで、何が欠けていますか?私の知る限り、コンポーネントと同じようにファイルをどこかにドラッグする必要があります。よろしくお願いします
質問する
48 次
2 に答える
0
ドラッグ中にコントロールを押してみてください。
于 2013-01-19T15:55:05.913 に答える
0
Hold Ctrl + Shift while dragging not the item as visually displayed in the Interface Builder main window, but instead the item's name in the left sidebar.
You'll need to view the .h
file at the same time (assuming that's where you want the property to be "dragged into" the code), which you can bring up with Cmd + option + Enter, or by picking View > Assistant Editor > Show Assistant Editor.
Once that's showing, you can drag properties from your .xib
into the .h
.
于 2013-01-19T16:39:18.793 に答える