So for now I only want to automate taps on the webview in flutter without the need of the user to do anything. I saw something related to renederobjects and HitTest but I'm not sure how to use them.
So the requirement is that I give a coordinate and then a tap is registered in those coordinates.
Thanks in advance.
Related
I am losing most of my work time stucking at scrollview,autolayout issues.And now,when i found TNImageSliderViewController.I see that i have hope in scrolling images with no autolayout issue.Thanks to the developer who write TNImageSliderViewController.But,after that I want to do another thing which still keep making me stuck.I tried many tutorial and video and which keep making me stuck.
Here is what i need to do...
1.When I clicked one of my image in scrollview,i want to see full screen of that images i click at another view.
2.That another view should also have capabilities like TNImageSliderViewController which we can slide images.
3.I want to add zoom with pinch or tapped zoom at full screen image that i clicked.
Any Idea?or suggestion or library which it can do it easily and completely with no autolayout issue which we can rotate as we like?
Please help...Please,I really need help.Also all newbie like us might want the same answer like me.
I want to make application like Solar Wether application. Please see this video.
I don't want code but want to know how can we achieve functionality like zoom in/out in this application.
Please suggest me how to do this. I had made some code and done some R&D work and found this solution but want to do exact animation like this app.
You can subclass UIScrollView and use all the touch events like touchesended,touchesbegan, touchesmoved.
If you want a specific location of that touch you can get the point where the touch happens and call your custom action.
My app currently texts the user's GPS coordinates, after which the receipent enters them into the MAP app that comes with our iPhones. I just discovered that it is somehow possible to create an icon that the receipent merely clicks on to bring up the MAP app, where it displays a map showing the location of the coordinates, along with the exact address. I was so impressed with the accuracy and ease of use that I want to modify my app to text an icon, instead of the GPS coordinates. I spend all day researching but can't find how to do it. (Maybe I haven't looked in the right places, so please excuse me if I'm wasting time.)
The icon I'm trying to create (and text) is the one that you would create if you were looking at a location using the MAP app. After you tap the disclosure button it displays detailed info. At the bottom of the screen is a button entitled, "Share Location." If you click it, you then have the option of clicking another button entitled, "Message." a text message gets generated with an icon that represents a pin with a red head. This is what I'd like to create.
If it's possible, can somebody point me to where I can find more information, hopefully, including sample code?
Not all users have the ability to text images. The best option might be to just use the text... Also when you ask how to create the icon, what do you mean? The actual image?
I'm trying to let the users of my app cancel an active alarm using a slider, like the timer app or the iPhone lock screen.
Is this control available to us as developers? If so, what's the name of it, and do I need to add it programmatically? I do not see it in the interface builder.
Thank you!
You could always try this on cocoacontrols.
Slide to unlock control
There you go,
http://xcodenoobies.blogspot.com/2011/03/how-to-do-slide-to-unlock.html
It's not a standard control - you'll need to create it yourself.
However, I think you should be able to customize the slider control. You can change the look and feel of that by supplying your own graphics, and it should be easy to simulate the behavior of the lock slider (such as making it slide back to 0 if it doesn't get all the way across).
I'd like to take a sneak picture while user is playing my app and show the pic after a certain time period.
If that's not possible, I'd like to decrease the camera view size.
Is that possible?
Thank you
I dont think Apple will allow you to "sneak a pic" of the user. Your app may or may not get rejected, you may want to think of another way to allow the app to take snap of the user, maybe an alert, much like the Location dialog, asking the user to allow the action.
UIImagePicker *imagePicker.cameraViewTransform =
CGAffineTransformScale(imagePicker.cameraViewTransform, 1.0f, .5f);
You can change the by using this one.
It is completely possible. Just have a UIView overlay your UIImagePickerView. Use the
-takePicture method to randomly take a picture without them pressing anything.