Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I was experiencing the same exact issue on my iPad 3 today (just one out of three iPad 3 I tested out), and I found out it is related to global Accessibility settings. The solution is to double check that <strong>every option in accessibility panel is disabled</strong>. I think that some options (like bigger fonts, for example) could stay enabled, but I haven't checked which one in details.</p> <h2>Explanation</h2> <p>Looking at the stack trace you can see this:</p> <pre><code>#0 0x003121ce in -[MyCollectionViewCell initWithFrame:] #1 0x32f945ec in -[UICollectionView _dequeueReusableViewOfKind:withIdentifier:forIndexPath:] #2 0x04466656 in -[UICollectionViewAccessibility(SafeCategory) _dequeueReusableViewOfKind:withIdentifier:forIndexPath:] #3 0x32f9414a in -[UICollectionView dequeueReusableCellWithReuseIdentifier:forIndexPath:] #4 0x001767cc in -[MyCollectionView collectionView:cellForItemAtIndexPath:] </code></pre> <p>As you can see there is a call to <code>-[UICollectionViewAccessibility(SafeCategory) _dequeueReusableViewOfKind:withIdentifier:forIndexPath:]</code> that references something about Accessibility. So I went to Accessibility settings in Settings app, and I found out that my setting for <strong>Accessibility Shortcut</strong> was "switch control" instead of nothing. So I disabled it, I ran again the app and my stack trace now was fine:</p> <pre><code>#0 0x00313658 in -[MyCollectionViewCell prepareForReuse] #1 0x32f942e6 in -[UICollectionView _dequeueReusableViewOfKind:withIdentifier:forIndexPath:] #2 0x32f9414a in -[UICollectionView dequeueReusableCellWithReuseIdentifier:forIndexPath:] #3 0x001767cc in -[MyCollectionView collectionView:cellForItemAtIndexPath:] </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload