Posts by Lucas Damiani • 142 points
7 posts
-
2
votes2
answers658
viewsA: Can I generate a certificate for an IOS app without an Apple device?
You can use the above mentioned method, or you can have access to a Mac using a service like Mac In Cloud, to test your app in the simulators and build your app in Xcode. Anyway, you need the Apple…
-
0
votes2
answers74
viewsA: How to recover the html displayed in a Uiwebview with Swift for IOS
You must implement the protocol Uiwebviewdelegate, and perform the action you need in the method viewDidFinishLoad.…
-
3
votes1
answer129
viewsA: Swift - Parse in HTML
Hello. You can use the framework hpple for this. The framework is built in Objective-C, but you can use it in Swift. I made a simple example, which loads an HTML page with two Forms (distributed…
-
0
votes2
answers208
viewsA: Label Position - Swift IOS
I simulated a possible way to do this using Uislider and the thumbRectForBounds method. However, I have found that Gradientslider does not have a direct method to pick up the size and position of…
-
1
votes1
answer560
viewsA: Code for handling video components
Your logic for increasing/reducing volume is working properly. The problem is that in the last line of the init() function, you leave the video as mute: video.muted = true; } Just remove this line…
-
-1
votes2
answers160
viewsA: Prevent Insertion of Zalgo Text in Inputs
You can try using this code snippet in your PHP script. if ( preg_match ( '/[^\x20-\x7E]/', $text ) || preg_match ( '/[^\x20-\x7E]/', $text ) ) { die('ZALGO not allowed'); } How to Prevent Zalgo…
-
3
votes2
answers406
viewsA: Object declaration in Javascript
Javascript is a multi-paradigm language. Among the supported paradigms is Object Orientation. You can create objects in various ways. In this form, I create a list object, with the listSize, pos and…