Advertisement
Guest User

Untitled

a guest
Mar 19th, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. #include <ChatKit/ChatKit.h>
  2. //#include <Springboard/Springboard.h>
  3.  
  4. %hook CKUIBehavior
  5. -(BOOL) _shouldShowContactPhotos {
  6. return TRUE;
  7. }
  8. -(BOOL) _useContactPhotosInConversationList {
  9. return TRUE;
  10. }
  11. -(float) _contactPhotoBalloonMargin {
  12. return 5;
  13. }
  14. -(float) _conversationListContactImageDiameter {
  15. return 40;
  16. }
  17. // -(float) _transcriptContactImageDiameter {
  18. // return
  19. // }
  20. %end
  21.  
  22.  
  23. %hook CKTranscriptDataRow
  24. -(BOOL) _wantsContactImageLayout {
  25. return TRUE;
  26. }
  27. %end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement