Edwin Vermeer
Edwin Vermeer
@kylef Is there any progress in taking over this project? I'm also willing to take it over. I can even take some personal time off to clean this project up...
Indeed there is no access to httpBody. According to the documentation you should be able to het the httpBodyStream. But that also does not work. I tried that using: ```...
This workaround seems to be working for me. Since I only have 1 place where i set the httpBody for a request, I also saved the data as a property...
i tried your sugestion, but then the redirect url is also encoded. Because of that I got an error when doing the google oauth. What was the url string that...
AttributedTextView does not change any attributes by itself. It just takes the UILable, UITextview or NSAttributed text and applies whatever you specified. Indeed Apple made some changes in Xcode 11...
Sorry, I don't think I can help you. SPM support is only here because it was in the initial setup template of the project. I have no experience with SPM....
Do you mean that the hashtags and mentions are working but the links not? Is your HTML using
Hi, Yes, you ar right, It now assumes you are doing everything on the main. I think that for now you could use a workaround like this: ``` DispatchQueue.global().async {...
@jameshays Good point. I was already hesitating implementing it the way I suggested.
Unfortunately you can't do that. It's a limitation of the NSAttributedText. On one UITextField you can only set a .linkColor for the entire control. But I do see that TTAttributedLabel...