Updating extensions for iOS 14: Difference between revisions

From iPhone Development Wiki
(→‎SBHIconGridSizeClassSizes (Widget Layout size management): These are structs :) Clear this out till the 'stable' solutions to issues are found, which shouldn't be long.)
Line 9: Line 9:
= What has changed in iOS 14? (Classes, frameworks, etc.) =
= What has changed in iOS 14? (Classes, frameworks, etc.) =


== SBHIconGridSizeClassSizes (Widget Layout size management) ==
== Icon layout handling changes ==
 
<code>
0x 02 00 02 00 04 00 02 00 04 00 04 00 04 00 06 00 
 
0x<a1>00<a2>00<b1>00<b2>00<c1>00<c2>00<d1>00<d2>00 
 
where
 
a - small (2x2 in this example)
 
b - medium (2x4)
 
c - large (4x4)
 
d - extra large (4x6)
 
</code>


== IMMessage instantMessageWithText ==
== IMMessage instantMessageWithText ==


All functions in the IMMessage class that start with "instantMessageWithText" now take an extra parameter, "threadIdentifier". For a message that's not replying to a specific thread, you can just pass in nil for this parameter.
All functions in the IMMessage class that start with "instantMessageWithText" now take an extra parameter, "threadIdentifier". For a message that's not replying to a specific thread, you can just pass in nil for this parameter.

Revision as of 06:40, 7 December 2020

Let's collect knowledge like we did with iOS 13, iOS 12, iOS 11, iOS 10, iOS 9, iOS 8 and iOS 7 – paste in your notes and share what you've learned, and somebody else will organize it later. :) If you want to ask questions and share tips over chat with other developers, see How to use IRC for how to connect to #theos and #iphonedev.

Hey developer, you can add your knowledge here! Yes, you! Make an account and edit this page!

If you want to see what's been recently updated on this page, you can use the wiki's history feature to compare the revisions (to look at the diff) since the last time you visited this page.

What has changed in iOS 14? (Classes, frameworks, etc.)

Icon layout handling changes

IMMessage instantMessageWithText

All functions in the IMMessage class that start with "instantMessageWithText" now take an extra parameter, "threadIdentifier". For a message that's not replying to a specific thread, you can just pass in nil for this parameter.