The source code for the tweak that automatically solves your OCD!
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- //ios 13
- %hook SBHFolderSettings
- -(void)setSortsIconsAlphabetically:(BOOL)arg1 {
- %orig(YES);
- }
- %end
- //ios 12 and lower
- %hook SBFolderSettings
- -(void)setSortsIconsAlphabetically:(BOOL)arg1 {
- %orig(YES);
- }
- %end
|