PythonistaのCustom Attributeでハマったところ
CustomAttributeにアクセスしたらエラー
PythonistaでUIとしてtextfieldを追加し、それに付与したCustomAttributeにアクセスしたところ、以下のようなエラーメッセージが表示されました。
{‘attr‘:‘value‘}
def action(sender):
print(sender.attr)
Warning: could not load custom attributes of view "CustomAttributeの名前": invalid character in identifier
原因
Pythonのコードを含めて、外部キーボードからの入力をしていたのですが、Pythonのエディタ上では問題ない'(シングルクォーテーション)
の入力が、CustomAttributeを入力するinspector上だと‘(引用符?)
となってしまうのが原因でした。
とりあえず、外部キーボードからではなく、スクリーンキーボードから入力することにより対処しました。
{'attr':'value'}
根本的な問題
iOSのスマート句読点
という機能のせいでした。
設定から変更したらば、外部キーボードからでも正常に入力できるようになりました。
参考
https://forum.omz-software.com/topic/2663/syntax-inside-the-custom-attributes-section/11
https://getnavi.jp/business/247123/
Author And Source
この問題について(PythonistaのCustom Attributeでハマったところ), 我々は、より多くの情報をここで見つけました https://qiita.com/hisao0o0o0/items/d9324b2c43d6d32905ad著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .