Skip to content

Instantly share code, notes, and snippets.

@alimoeeny
Forked from jkereako/PrintDataAsString.swift
Created July 5, 2024 20:10
Show Gist options
  • Save alimoeeny/13c0ba739f3660f753f70279956390ba to your computer and use it in GitHub Desktop.
Save alimoeeny/13c0ba739f3660f753f70279956390ba to your computer and use it in GitHub Desktop.
LLDB commands to print a Data object as a String. It only works if the underlying data is actually a String.
// See: http://stackoverflow.com/questions/11531353/viewing-nsdata-contents-in-xcode#25097265
po String(data: data, encoding: .utf8)
// Objective-C equivalent.
// See: http://stackoverflow.com/questions/11531353/viewing-nsdata-contents-in-xcode#19626815
// p (char *)[buffer bytes]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment