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 9 years ago.
I need to create an app to draw an organizational chart for iPhone. user can able to chose the shapes, relationship.etc., How can do this? .Is there any library to create flow chart/org chart in objective c for iphone.
Note: I have used coreplot for drawing pie,line,bar,scattor charts.
Check this out, it looks like an advanced coreplot but I believe you can modify this to suit your needs
Link
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 9 years ago.
I'm trying to recreate the look here:
(Except normally these buttons would not be disabled). How do I recreate this iOS-style look in an objective-C application?
The Mondo Switch seems like a good place to start
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'm trying to program a PhoneGap Plugin for by clicking the app. I'm only looking to get the phone number and call duration of the call. Does anyone have any information of coding this either in cross platform or native Objective-C?
This is not possible under any version of iOS on a non-jailbroken device, and doing any type of manipulation of any kind to obtain this information won't be accepted in the app store.
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.
Hi I have many images in my tableView, and I want UIImage to look as native iOS icon.
Is there any way to do that?
For the rounded corner, you can do this:
[self.myImageView.layer setCornerRadius:10.0];
UPDATED
As mentioned, you need to add QuartzCore framework to make it work
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 very new to objective-c, but i want to make some app that does the following:
1 It has object library (shapes, text fields and so on), i keep in on a panel on my app.
- the task is to drag a shape to the main form and place it somewhere where i like on my form: kind of same thing like in the Interface builder.
2 resize the shape (Actually an UIIMage).
It's pretty same with the Interface builder.
I would very appreciate for any example code that helps me to solve this task.
EDIT:
Exactly the same but for iOS exists here:
https://github.com/spoletto/SPUserResizableView
As i can see in the code it's not very easy task so this question is considered answered.
You can start by checking this out:
https://developer.apple.com/library/mac/#samplecode/DragItemAround/Introduction/Intro.html
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.
This app is using iOS 5's built-in dictionary with UISearchBar.
I want to include this feature for my iOS app.
But, I Can't find document in developer.apple.
If you tell me about it and example code, Please.
Sadly there isn't an api for the built-in dictionary. The only thing you can use in that direction is the UITextChecker class. It seems to me, that the app you are talking about uses it too.