Believe everyone’s company code more or less has some assertions (for example NSAssert). A common assertion scenario: SDK developers to avoid SDK’s initialization methods and functional interfaces, will judge in functional interfaces if already initialized, otherwise trigger assertion. Of course also various other scenarios.
...
iOS reverse engineering often encounters parameters of block type, this article introduces an lldb script, can quickly print block parameter types in Objective-C methods.
...
Background
Often have need to analyze file size occupation within a folder (for example analyze mobile App’s installation package size), all along GrandPerspective basically met this need, but when using often hope to see folder’s parent-child relationships, FolderSizeView solved this need.
However, FolderSizeView’s performance too poor, when folder content too many (for example analyze Xcode.app’s file size) can’t handle. Actually after FolderSizeView released continuously people feedback can’t analyze results when file content too many, after communication discovered everyone actually compared FolderSizeView with some disk analysis tools, since design original intent was only to analyze App installation packages, solved my personal need, so I also didn’t want to invest time to optimize.
However…
...
Thanks:
Minority: “Remote Input Method” New Version Released, Type on Phone Using Browser
iPlaySoft: Remote Input Method - Creative Efficiency App for Typing on Phone Using Computer Keyboard! Saves Bluetooth Keyboard Money
Most Beautiful App: This APP Finally Solved Trouble That Bothered Me So Many Years
Virtual Framework: Remote Input Method Released, Type on Phone Using Computer
Minority Software: This Idea Is Big: Remote Input Method, Type on Phone Using Computer
Also thanks to “PriceTag” and other media’s promotion.
Remote Input Method is an input method app, can implement using computer to type on phone, make phone typing faster. When using Remote Input Method, phone client will display a URL, access this URL in computer browser, can start input. Text entered in browser sent to phone, thus implementing typing on phone using computer.
Mobile client supports iOS and Android, computer just needs browser (so supports macOS/Windows/Linux three platforms).
Remote Input Method displays as Remoboard in English systems, meaning Remote Keyboard.
...
Current article a bit outdated, can see new article Remote Input Method New Version Released, Type on Phone Using Browser
Remote Input Method (Remote Keyboard or Remoboard) is an input method app, can implement using computer to type on phone. It contains computer client and phone client two parts, when inputting, computer client first connects to phone client through IP address or Bluetooth, then type in computer client’s app, text will be sent to phone client, phone client’s input method completes simulated input.
Simply put, this way “typing faster”. Phone client supports iOS and Android, computer client supports macOS and Windows.
...
FolderSizeView can use TreeMap method to display file size proportion situation within a folder.
Background
Often have need to analyze file size occupation within a folder (for example analyze mobile App’s installation package size), all along GrandPerspective basically met this need, but when using often hope to see folder's parent-child relationships, FolderSizeView solved this small need.
...