It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I've come across this really odd bug and can't seem to find any information on it anywhere.
Basically, I have lots of images on my website, as you do. There's nothing wrong with any of the code - it must be the iPad I'm using as PC in all browsers + my iPhone work fine.
Basically, it seems to favour one particular image on the page, and replaces other images with this image?! So I get the same image in lots of different places on screen, where there should be lots of different images... if that makes sense.
Has anyone else come across this problem and have any ideas of how to fix?
Many thanks
Edit: Could be worth pointing out that I'm using a 3G connection, although it seems to work fien on my iPhone with 3G - and it can't be caching issues as I've cleared many times and every image has always had a different name...
Have you tried viewing your website on Safari?
And also on other browsers (FireFox/Chrome etc)
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am trying to use the UIGlassButton on my iPhone 5 running iOS 6.1 final. There are no errors, just that the UIGlassButton doesn't show up. I also tried this and many other yet finished GlassButton proects on GitHub etc., but none of them works.
What am I doing wrong?
This is exactly the reason why you shouldn't use private API's. Because classes like these are for internal use only, they could change or even be removed in between OS updates.
Imagine you would have used this in an application already in the store, it would either crash or just not show the buttons. A good way to treat your users.
UIGlassButton is a private class and should not be used. To create a similar effect build the button yourself or use images.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I took a picture from iPhone camera.Now I want to scan the image like X-Ray scanning. Let consider I took a picture of an arm and then by programming/Algorithm it will scan the photo and will display the bone inside the arm. Are there any image processing library which can do similar type of thing?
I have tried to get the upper thing by several things provided by apple using core image but did not get anything which I am looking for.
https://developer.apple.com/library/mac/#documentation/graphicsimaging/Conceptual/CoreImaging/ci_intro/ci_intro.html
Does anybody have any solutions regarding this?
Thanks
No. What you are asking for is fundamentally impossible -- the iPhone camera cannot see through solid objects. (And I can't believe I just had to say that.)
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
An app I recently had approved for sale on the iTunes store has been getting feedback stating a complete breakdown after two days of use. The app works as intended and seemingly (due to it being accepted for distribution) doesn't have any obvious bugs that could cause this sort of strange behaviour an Apple tester might pick up on. Essentially after a few days of use, the app initiates with a completely blacked-out screen and isn't usable.
I can't seem to find anything regarding this problem when searching Google and have no clue where to begin attempting to fix this issue.
Any ideas or links to similar problems would be really helpful.
If this is a frequent issue, you should start seeing crash logs appearing in iTunes Connect for the application, so that would be where I'd start in diagnosing this. Without any sort of crash log or similar data, we can only speculate as to the cause here. – Brad Larson
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
At my office we use a LAN (connected to internet through Comcast) and 30-50 people all accessed a web app (on Heroku) simultaneously. The server responded as if it had been hit by 50K people. Am I barking up the wrong tree, or would it make a difference if 50 people on an office network hit an app at the same time versus 50 people spread across the globe?
Apologies for such a vague question, but it only just occurred to me as a possibility.
Thanks in advance.
Having 50 people access your app simultaneously will have roughly the same effect, no matter where they come from. There is no more effort required to serve local requests than global requests (or vice versa). If your app has a performance problem, then consider yourself lucky that you've exposed it before turning on public access!
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
How do I add effect (e.g. lomo) to a photo on iOS?
To make it simple, I wanna try to make an iPhone app which is similar to those photography apps, and I want a tutorial to start with.
As coreImage framework is not present in iphone (atleast upto iOS 4.0), you will have to do image filtering by hand..You have to iterate through each pixel in an image and work on it..This thread discussed about various image filtering effects in iphone and is very useful..These guys say they are successful in porting imageMagick to iOS but I never tried that..Also I asked a question about implementing polaroid filter in iOS, though it didnt get a good answer, the question itself might be helpful..