У меня проблема с автозапуском, консоль сообщает о проблемах с представлением изображения, которое у меня есть в ячейке:
RefreshCatalogue[31754:16177989] Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
(
"<NSLayoutConstraint:0x7fa98103b740 V:[UIImageView:0x7fa9810375d0]-(0)-| (Names: '|':UIView:0x7fa9810371d0 )>",
"<NSLayoutConstraint:0x7fa98103b7e0 V:|-(0)-[UIImageView:0x7fa9810375d0] (Names: '|':UIView:0x7fa9810371d0 )>",
"<NSLayoutConstraint:0x7fa98103b8d0 UIImageView:0x7fa9810375d0.centerY == UIImageView:0x7fa981037490.centerY>",
"<NSLayoutConstraint:0x7fa98103ba60 UIImageView:0x7fa981037490.top == UIView:0x7fa9810371d0.topMargin + 71>",
"<NSAutoresizingMaskLayoutConstraint:0x7fa980d44a10 h=--& v=--& V:[UIView:0x7fa9810371d0(50)]>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x7fa98103b8d0 UIImageView:0x7fa9810375d0.centerY == UIImageView:0x7fa981037490.centerY>
Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
Проблема в том, что если я делаю:
[self.collectionView reloadItemsAtIndexPaths:@[indexPath]];
Ничего не показывает, даже если изображение имеет правильный фрейм, устанавливается свойство изображения. Если я перезагружу весь вид коллекции с помощью:
[self.collectionView reloadData];
Ошибка все еще существует, но изображение отображается. Код открыт здесь, кто-нибудь заинтересован в том, чтобы взглянуть: https://github.com/Ridiculous-Innovations/RefreshCatalogue
Кроме того, все ограничения в панели рассказов выглядят синими. Любая идея, что может вызвать проблему?
Изменить: Излишне говорить, что все элементы, включая изображение, находятся в нужном месте (я отлаживал кадры и задавал случайные цвета), но изображение не отображалось до обновления... иногда ячейки не отображение вообще