I am working on a client/server application and considering the iPhone platform for my next client. My only issue is that my server currently only runs on Windows. Will Apple even consider approving my app without having a Mac server available?
Thanks!
...
Can someone please help me out with this I'm actually going nuts!
What is the best way to get text from a plain .txt file into a Scroll View, thats all I need just text.
I've tried so many different solutions but can't get any of them working I was hoping someone could give me a fresh overview.
...
I'm trying to use SHFHKeychainUtils in my project, but I keep getting the following error when I build:
".objc_class_name_SFHFKeychainUtils", referenced from:
literal-pointer@_OBJC@_cls_refs@SFHFKeychainUtils in ResultsViewController.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
I added Security.framework via Target > G...
we are looking for a way to find out (not modify, just find out) if our application has been allowed to receive notifications or not from our service. This probably requires read-only access to the "general settings" properties or some specific API's. Does anybody know how to get that information? I am talking about the info in iPhone...
I wrote some naive code(in the sense that it's synchronous calls) for a tableview that contains thumbnails of images pulled from a url. The code in cellForRowAtIndexPath that pulls the image goes like this:
data = (data == nil)? [[NSData alloc] initWithContentsOfURL:photoThumbPage] : [data initWithContentsOfURL:photoThumbPage];
thumbImg...
Example: I have a view controller and get rid of it. But there's still an variable holding it's memory address. Accessing that results in EXEC_BAD_ACCESS. Of course. But: Is there any way to check if that variable is still valid? i.e. if it's still pointing to something that exists in memory?
...
How to reset a uinavigationview to display the root controller when user clicks back to it in a tab bar app
Hey,
Just wondering how I would do this. I have the navcontroller in my delegate along with the tabbar controller and Any time the user clicks to another tab I want the rootview on the navigation controller to be shown if and whe...
I just want to make sure that I am heading in the right direction with how a simple MVC application is constructed.
// MODEL
@interface Reactor: NSObject {
NSNumber *temperature;
NSString *lastInspection;
NSNumber *activeRods;
}
.
// CONTROLLER
@interface viewController: UIViewController {
UITextField *tempTextFiel...
iPhone / Objective-C
On my view a little "hover" view appears after a user clicks on a button on the main view. When the user clicks this subview I want the subview to FlipFromRight to another view (same size). The main view underneath should stay.
viewHot and viewCold are the subviews viewMain is the main one.
Is this possible?
...
Hi:
I struggle with Core Data on the iPhone about the following:
I have a 1-to-many relationship in Core Data. Assume the entities are called recipe and category. A category can have many recipes.
I accomplished to get all recipes listed in a UITableView with section headers named after the category.
What i want to achieve is to list all...
I need to listen for global mouse events(not bound to an app) on my Mac in an app written in Python.
I'm using PyObjC, but I can't figure out how to do it. Plain ObjC examples or other Python techniques also appreciated.
My code so far:
from Quartz import *
def MyFunction(proxy, type, event):
print event
CGEventTapCreate(kCGHIDEv...
Hi,
I have a custom window (matt gemells Transparent Window class) and I need to change the window's alpha value to achieve a fade in/out effect and perform a "makeKeyAndOrderFront:".
However this does not work.
What I did:
I imported the header:
#import "TransparentWindow.h"
Then tried:
[TransparentWindow setAlphaValue:0.5];
[...
I have navigation controller with 2 view controllers. VC1 calls VC2. Based on button selection VC2 displays VC3 modally. After the display VC2 dismisses VC3. Here is my piece of code.
VC3 has an imageview. Inside VC3 I have logic to display the image based on button selection in VC2. Could it be done in a better way (like moving all t...
For example, in the Cocoa Framework, most of the touches methods do nothing unless you implement them. If, in all similar methods throughout my program, I call [super method:] before my custom implementation, would that ever cause realistic slowdown (hundredths of a second)?
Maybe a stupid question...But I ask since I don't know the lo...
I have two UIImageViews on my object, and I'm trying to animate them to page like a book. I used some of the built in animations for a while (UIViewAnimationTransitionFlipFromLeft/Right), and decided I could do better. I found a nice example for half of the animation I wanted here: http://fiftysixtysoftware.com/blog/2009/uiview-pageopen-...
hi everybody,
first, i followed this tutorial: three20 github tutorial
i have a memory management problem i think, which crashes my application.
i think, _properties in my postsModel crashes my application.
the first time i launch my application and changing view to my postsTableViewController works quite fine. i created a TTLaunche...
I have an NSColorWell, which is bound to a property that contains an NSString instance, which get's transformed into an NSColor through my ColorTransformer (NSValueTransformer). It essentially transforms something like #FF0000 into an NSColor. This works as expected, but the ColorWell no longer opens it's Pane when clicked. When I disabl...
My iPhone app keeps crashing, and I've narrowed it down to this one line over the past bloody week:
NSArray *fetchResults = [managedObjectContext executeFetchRequest:request error:&error];
I'm getting the right result from the above, but the app crashes after accessing it (EXC_BAD_ACCESS).
How do I just copy the contents of fetchResu...
I created an NSWindow object in IB which contains some textFields and buttons at the top and an NSTextView beneath them. I then reduced the window height so as to hide the textView from sight when the window is initially opened. What I'm trying to do is to resize the window height programatically (thus exposing the textView) if any data ...
I am using the iPhone camera to capture an image and them resizing and adding a rounded corner. I'm having some users complain about crashes and I can't seem to find the problem. Also, the code runs very slow after selecting an image.
Can anyone offer suggestions to improve the method below?
-(void)imagePickerController:(UIImagePic...