Mac Os control panel application
Hello I want to create application, which will run in MacOs control panel. Help me please to find information about how to do this. ...
Hello I want to create application, which will run in MacOs control panel. Help me please to find information about how to do this. ...
I have an iPhone app that I created by copying an xCode project to another location and then renaming the project, executable, product etc. Lets say the original and the copy are app A and app B. If I install A to my phone with an ad hoc provisioning file, it installs and runs fine. The same is true for B. But if I first install A and th...
I've searched all over and haven't found any help... I built a small test app with two UIViewControllers and their corresponding xibs. Things were fine, then I made some changes to both xibs but when I build and run, I get the old views. I've tried deleting the build folders, running in the simulator and device, cleaning all targets a...
I'm trying to build a super-simple Cocoa app, basically one that has one function (for example, main()) with a while loop. It does some stuff, does a curl request, then waits a few seconds before starting over. I've got my project all setup in XCode with all the necessary variables and functions, but I don't know where to put my main() ...
i added overlay (MKOverlay) with custom drawings to the Mapview. The overlay showing fine and i can see the drawings. But when i remove that overlay its not removing perfectly some part of the drawing is still there. What is the reason? im using removeOverlay: for removing that overlay. Any help is appreciated.. ...
Hi, using IPhone SDK 4.1. I want to access my IPhone documents directory in Organiser but the Applications box in Organiser has all the apps grayed out including my own. This is the one on the summary tab. I used to be able to click on my app row a litle arrow and then copy the whole directory to my Mac on previous versions of Xcode. Any...
I've seen some apps that connect to routers via ssh. Can anyone recommend any documentation on interacting with Cisco IOS configs and notifications? I'd love to write some custom in-house code! ...
I have a UItabbarController and inside the first tab a UINavigationController. In interface builder I have set the tab bar and navigation bar as hidden. When the first screen loads up (which is a UIVewcontroller in the Uinaviagtioncontroller of the first tab) I set an NStimer for 2 seconds. After which it navigates to a second view. Now...
HI i am using zxing API into my application and it says that the application cannot be posted to the App Store because it is using private or undocumented APIs: Private Symbol References UIGetScreenImage can somebody help me out as soon as possible ...
Hello I declare some constants in a header file which need to be different depending on whether it is an iPad or an iPhone app. How would I do this? i.e #ifdef ISIPAD static NSString myconst = @"ipad!"; #else static NSString myconst = @"iphone!"; #endif ...
in my project, i have to store two or more values of string type in an attribute of an entity. So my question to all of you is that how to set multiple values of a single attribute? ...
Hi, Im using Core data. I have an entity with an attribute of type Date. Is there a way I can set Default Values as Current Date? (Like entering 'CURRENTDATE' or something in default value of the attribute?) Thanks ...
I have a View Controller that is swapping UIView objects in and out. There is the potential to have hundreds of different views, each with their own behaviors. Within my current MainWindow.xib file I currently have: File's Owner UIApplication First Responder UIResponder AppDelegate AppDelegate -Cover Cover Window...
I do most of my home development in Xcode, however my classes require me to use visual studios 2010. I am curious if there is some tool that can convert my xcode project to visual studios projects and back and structure the files the way the ides want them to be? the programs I am writing are OS independent ...
hi, i have a NSString that is of the follow : Hello (\n) (\n) No.: 123456789123 Age: 21 (\n) Country: xxx how can i search within a string so that i get "123456789123" as a new string? thx in advance ...
It doesn't seem to do much... :/ I don't have any (apart from MainWindow) XIB files. Thanks ...
On Windows, I've long been used to the debug CRT's _CRT_LEAK_CHECK_DF functionality. When the program finishes, and once all the atexit callbacks and (in C++) global destructors have been run, it prints out a list of all the still-allocated malloc and new blocks. This is pretty crude, and the output isn't actually terribly useful, but it...
For some reason, it seems that stopping at a breakpoint during debugging will kill my audio queue playback. AudioQueue will be playing audio output. Trigger a breakpoint to pause my iPhone app. Subsequent resume, audio no longer gets played. ( However, AudioQueue callback functions are still getting called.) ( No AudioSession or AudioQ...
Hi all. I'm at a loss... I have a navigation based app that has a detail view (UIWebView) with action buttons across the bottom in a UIToolbar. I want to add 'notes' when the 'notes' button is pushed. Everything works fine when the webview is in portrait mode. I press the notes button, the modal view opens fine and works great. The...
I am dynamically creating buttons in a class that holds all my functions named Functions.h and .m. So I basically call my function from the class like this passing in a scrollview: [Functions buildMyCarousel:SCROLLVIEW] in that function I then call a buildButton function The problem is when I set the button up like this: [button a...