Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
uiimageview が設定されているかどうかを確認したいので、非表示にしたいボタンがあります。
私はこのコードを持っていますが、機能していません 永久に隠しているようです...
if (imageView.image == nil) upload.hidden = YES;
これを試して:
if (imageView.image) upload.hidden = YES; else upload.hidden = NO;