» iPhone Dev SDK - The community for the iPhone developer community
iPhone Dev SDK is a community for software developers interested in the iPhone SDK platform. Founded in March 2008, iPhone Dev SDK was one of the first communities for this revolutionary new platform.
What separates iPhone Dev SDK from the others is the friendly atmosphere the community provides for developers of all abilities. Whether you've been programming your entire life or are just now getting interested, you'll find yourself welcomed to the community.
I have a client who i am developing an application for. the application is for use internal inside his business only, it cannot be released to the public, the app is not to be used by anyone else. he would also like to licence the app to other similar businesses, it would work via a yearly subscription the other businesses pay to him, i take a cut, and their app continues to work each year, as well as receives updates of new content inside the app. how to distrubute the app to them is the question.
i was looking at the apple b2b system, and it looks like what i need, but im not in the US so i cant do that.
at the moment there will be maybe 5 ipads with this app, but potentially down the track there could be 100. when the times comes i guess i could just buy more developer accounts to get past the 100 device limit on each developer account.
i was thinking maybe i can just email them an ad hoc release with a prov profile... [Read More]
So i am making an app for electrical engineering and I have a problem that I tried to search Google for but have no idea een where to start looking or what to search for.
I get numbers like 2000, 10000, 120000, 14000000 and so on and was wondering how to detect the amount of zeros and change it to 2K, 10K, 120K, 14M and the like.
Any info on how to do this or a link to somewhere taht shows how to do it would be awesome.
Hi,
I have a UIButton where I set an image through setImage.
I would like to add it to a view with a nice animation effect, it should display it growing from tiny to a little bigger than regular size to then shrink to original size.
How can I do that? Using UIView block animation can I animate "rastered" UIView?
Hi,
I need just a little hint from you. Here is my code:
Code:
contentForThisRow = [[self searchResults] objectAtIndex:row];
for (NSString*strinoftitle1 in arraywithartists){
if ([strinoftitle1 isEqualToString:contentForThisRow]){
contentForThisRow=[arraywithsongtitles objectAtIndex:t];
}
t++;
}
It is not so difficult as it sounds (-; I get a search result from a search tableview and look if it is equal to a string in a mutable array. If this is the case, another string of a mutable array which belongs to this string should be shown in a cell. Unfortunately there are more than one in... [Read More]
Such a simple question, with no helpful links out there.
I want to rotate an image 360/j (it's an animated clock). When you get past 90 degrees the animation either goes backwards using CGAffineTransformMakeRotation or resets to identity using QuartzCore techniques.
Why are the easiest things so hard? Please tell me how to rotate for example 210 degrees (i.e. anything specific over 180). Preferably without the need of a timer to move past the 180 mark.
Hi,
I'm trying to animate a view where the drawRect draws a rounded rect using UIBezierPath.
if I do the animation the rounded rect seems to be stretched and olny if I add setNeedsDisplay it's display correctly (but even with this just at the end of the animation).
Am I missing something?