Tagged Questions

Foundation is a framework written in Objective-C that implements many useful classes and functions. Foundation is used by almost any Objective-C application, as it provides memory management and other runtime features, without the need to use the Objective-C runtime API directly.

learn more… | top users | synonyms

25
votes
1answer
4k views

How to Get the Title of a HTML Page Displayed in UIWebView?

I need to extract the contents of the title tag from an HTML page displayed in a UIWebView. What is the most robust means of doing so? I know I can do: - (void)webViewDidFinishLoad:(UIWebView ...
11
votes
4answers
4k views

Opinions on Microsoft Solver Foundation?

I'm looking into options for a linear and non-linear programming (optimization) framework. Requirements are: Support linear and non-linear programming problems with approx. 100-1000 variables and ...
10
votes
6answers
137 views

Adding non NSObjects to NSMutableArray

This recent SO discussion has confused me. The NSMutableArray prototype for addObject: is - (void)addObject:(id)anObject and id is defined in objc.h as typedef struct objc_class *Class; typedef ...
10
votes
2answers
2k views

Difference between Foundation Framework and Core Foundation Framework?

I try to get the hang of it, but for now both seem the same thing to me. However, Xcode allows to create an Console App with choice of using "Core Foundation" or just "Foundation". Maybe someone can ...
9
votes
11answers
1k views

Multithreading Puzzles

I'm trying to come up with some programming puzzles focused on multi-threading. Most of the problems I've been able to come up with, so far, have been pretty domain specific. Does anybody have any ...
9
votes
2answers
3k views

Merging NSArrays in Objective-C

I have an NSDictionary where each key points to an array. I later want to merge all of the values into one array. Is there a way to use the API to do something more efficient than say: NSArray ...
7
votes
1answer
129 views

What is the point in a retain immediately followed by an autorelease?

I'm looking at some open source code and trying to understand why the author has done something in a particular way. The class is a wrapper around NSArray to create a stack data structure with push, ...
5
votes
3answers
157 views

how to: solver foundation quadratic least squares

I have two independant variables (GSH and Gls). Using these two variables I'm trying to predict an outcome (prob). Using a function of the form: prob=a*Gls^2+b*GSH^2+c*Gls+d*GSH+e. (where a,b,c,d,e ...
5
votes
3answers
2k views

NSSet and NSCountedSet, when is the best time to use them?

These two collection types are rarely used by me as I'm typically using their counter parts, NSArray, NSDictionary and the equivalent mutables. I have a feeling I'm missing out on a collection which ...
4
votes
1answer
82 views

Cast of an indirect pointer to an Objective-C pointer to 'CFReadStreamRef *' is disallowed with ARC

I want to use CFStreamCreatePairWithSocketToHost with NSInput- and OutputStreams. I have two ivars NSInputStream *_inputStream and NSOutputStream *_outputStream. The following gives me two error ...
4
votes
4answers
226 views

How to link/synchronize animation to a video recording in real time

App Descrtiption: Speedometer. Has needle dial and animated needle as overlay on the video. I output the animation of the needle onto the video via post-processing. I use AVAssetExportSession, and ...
4
votes
2answers
265 views

Simple Objective-C over-release that *should* crash is not crashing. Why?

Either my debugger is broken or there's something fundamental that I am not understanding. I have some very basic code in a very basic command line program that should crash. However, it is not ...
4
votes
1answer
488 views

Is it possible to invoke NSDictionary's valueForKeyPath: when a key contains periods?

I'm trying to get the value of the repeatInterval key in the com.apple.scheduler plist. I'd like to just use NSDictionary's valueForKeyPath: method like so: CFPropertyListRef value; value = ...
3
votes
1answer
48 views

Preferred way to make a mutable copy of a non-mutable object?

There are 2 choices (possibly more). Using NSSet as an example: NSMutableSet * mutableSet = [ NSMutableSet setWithSet:nonMutableSet ] ; or NSMutableSet * mutableSet = [ [ nonMutableSet mutableCopy ...
3
votes
2answers
70 views

Overriding isEqual: method but it is not called when removing object from array

I'm using xCode 4.2, and going through the book "Programming in Objective C 2.0" There is an exercise that involves implementing isEqual: method from the NSObject class. The book says that the ...
3
votes
3answers
374 views

Use Microsoft Solver Foundation in C#

I'm trying to use Microsoft Solver Foundation in my C# application in VS2010 Ultimate. I've installed MSF (64 bit version) and as far as I understand I should be able to use the services after ...
3
votes
2answers
164 views

Is it considered bad practice to write Windows applications using GNUStep?

I want to start developing for Windows but I want to preserve some of my frameworks that I've used with NSFoundation. I want to build them on Windows using GNUStep and maybe write the whole ...
3
votes
4answers
1k views

How to convert a string (“MyExampleClass”) into a class name (MyExampleClass)?

I want to convert a string to a class name. Consider I am having a dynamic string of class names. Its currently having the string "MyExampleClass". Now, I have to create an object of the class ...
3
votes
2answers
5k views

How can I delete a site template?

I created a site template from one of my sites, and now I want to delete it, but I can't find where to do it. I have looked everywhere :( I'm using SharePoint Foundation 2010.
3
votes
2answers
382 views

Sane(r) way to get character-encoding of the CLI in Mac OS X?

I was writing a CLI-Tool for Mac OS X (10.5+) that has to deal with command-line arguments which are very likely to contain non-ASCII characters. For further processing, I convert these arguments ...
3
votes
3answers
1k views

Team Foundation Server How to Edit file without checking it out

i'm working with TFS and i need to edit file localy without checking it out . another case if some one checked in the file and i need to change my locally copy. what should I do ? in Visual source ...
2
votes
1answer
102 views

CFRunLoopRun() vs [NSRunLoop run]

I have an NSRunLoop object, to which I attach timers and streams. It works great. Stopping it is another story alltogether. I run the loop using [runLoop run]. If I try to stop the loop using ...
2
votes
2answers
63 views

Setting up new framework-based projects and using LESS

So I'm trying to set up an environment where I can generate a new project and minimize the customization/complexity involved in setting up that new project. I'm using Structurer Pro (from nettuts+) ...
2
votes
1answer
20 views

Create related workitems in Microsoft Team Foundation Server by script or automatically?

Is there anyone know a way that you can create related work items to a us/task/bug in Microsoft Team Foundation Server 2010 by script or automatically with proper field filled? scenario 1: when I ...
2
votes
2answers
254 views

TFS Team Foundation Server 2010 - Structure - projects in multiple solutions - what the Best practice?

we've recently started using TFS2010 for source control. It's working well with the first solution we have migrated. $/TeamProject /Main /Source (contains solution) /Project1 ...
2
votes
2answers
145 views

How to Autorelease a CGImageRef?

I have a method that returns a CGImageRef object. It contains this call: CGImageRef posterFrame = [avAssetImage copyCGImageAtTime:time actualTime:nil error:&error]; ... return posterFrame; This ...
2
votes
1answer
704 views

Keep NSThread alive and run NSRunLoop on it

So I'm starting a new NSThread that I want to be able to use later by calling performSelector:onThread:.... From how I understand it calling that methods add that call to the runloop on that thread, ...
2
votes
1answer
554 views

How to use AVMutableComposition and CALayers on iOS

I'm planning to render content in a view on iOS using AV mutable composition. I want to combine the video coming from one of the iPhone cameras with content created in a layer - mutable composition ...
2
votes
1answer
143 views

NSData initWithContentsOfURL: does not return the original allocation?

In the documentation of NSData's initWithContentsOfURL:, it says: The returned object might be different than the original receiver. What are the implications of that? It seems to imply that a ...
2
votes
5answers
247 views

What happens when an NSArray element gets deallocated?

Let's suppose I create a few objects and I add them to an array. House *myCrib = [House house]; House *johnHome = [House house]; House *lisaHome = [House house]; House *whiteHouse = [House house]; ...
2
votes
1answer
51 views

Can I use KVC with primitive values?

Example: @property (nonatomic, assign) BOOL running; -valueForKey returns an id according to the documentation. But I slightly remember that KVC was so intelligent that it automatically wraps with ...
2
votes
1answer
427 views

How could I communicate with an RS232 device in Objective-C?

I'm trying to write a command-line, Foundation Objective-C program and I need to communicate to an RS232 serial device. Any ideas on how to do this? EDIT - This is NOT for iPhone! This is a DESKTOP ...
2
votes
1answer
423 views

iOS: NSSocketPort, where art thou?

The developer docs are full of references to NSSocketPort, which is supposedly part of the Foundation framework. However, I can't seem to find a header file for NSSocketPort in Foundation. My guess is ...
2
votes
1answer
163 views

Integrating Windows Identity Foundation with NServiceBus

Has anyone successfully integrated NServiceBus with WIF for message authentication/authorization?
2
votes
2answers
86 views

Why gets this initializer argument destroyed?

I have an initializer with two arguments: -(id) initWithSourceFrame:(CGRect)sourceViewFrame mappedFrame:(CGRect)mappedViewFrame { CGRect copy = mappedViewFrame; self = [super init]; if (self) ...
2
votes
1answer
119 views

Creating an NSDate from an API's value

I have a (Ruby on Rails site's) API which returns JSON data with datetimes formatted like this: 2011-01-21T18:05:41Z I have this in an NSString, and I want to make an NSDate of it. How can I do ...
2
votes
2answers
472 views

Change dictionary values wrong when using KVO with NSOperationQueue?

I was working through an example in the concurrency chapter of "More iPhone 3 Development," and can't get KVO on an NSOperationQueue working as expected. I create an NSOperationQueue and observe its ...
2
votes
1answer
909 views

CoreFoundation vs Foundation

In iPhone development, speed is of the essence. Does anyone know if there is a speed difference between using a CoreFoundation type (like CFMutableDictionaryRef) versus a Foundation type (its ...
2
votes
1answer
155 views

Exclude from project, source control issue

I'm using team foundation server 2010 @ work and home. I want to exclude some element from the project build but still have them exist in Team Foundation Server 2010 source control. How do I achieve ...
2
votes
1answer
357 views

Converting NSString to int [closed]

Possible Duplicate: NSString is integer? I've been searching around for the last half hour trying to find an easy way to convert an instance of NSString into an integer, and to be able to ...
2
votes
1answer
396 views

How do I highlight available days in a Calendar control in WPF?

I wanted to highlight some range of days in a Calendar in WPF, and make any other day in the calendar unavailable. So the user could select only the highlighted range. The problem is, I havent found ...
2
votes
1answer
522 views

Objective-C: Getting the True Class of Classes in Class Clusters

Recently while trying to answer a questions here, I ran some test code to see how Xcode/gdb reported the class of instances in class clusters. (see below) In the past, I've expected to see something ...
2
votes
3answers
716 views

Can I change an NSDictionaries key?

I have an NSDictionary object that is populated by NSMutableStrings for its keys and objects. I have been able to change the key by changing the original NSMutableString with the setString: method. ...
2
votes
1answer
1k views

Finding STS providers for Windows Identity Foundation

I've had a very brief look at Windows Identity Foundation (WIF) and it looks to me like I could say that my site is going to accept logins from other sites. e.g. anyone with a gmail or LiveID account ...
2
votes
4answers
495 views

Creators of C#? [closed]

Who are the creators of C#? Of course it is Microsoft but are there any major players that can be mentioned as architects, thinkers etc. behind the scenes? (Besides Gosling and Stroustrup that is...) ...
2
votes
3answers
965 views

Why does -isMemberOfClass: not work here?

NSMutableArray *arr = [NSMutableArray arrayWithCapacity:3]; if ([arr isMemberOfClass:[NSMutableArray class]]) { NSLog(@"YEP!!"); } else { NSLog(@"NO!!"); } I get always "NO!!" in console. I ...
2
votes
2answers
339 views

NSArray of Dates sort

Consider this array. It has no keys, so I am not sure I can use NSSortDescriptor. What would be the best method to sort them? ( "Thursday, July 30, 2009", "Monday, September 07, 2009", ...
2
votes
1answer
1k views

Add folder and file using Team Foundation Server SDK

I am having a problem with a folder and a file showing up under my project which is under my solution. The files are being added to TFS but my project has no idea that the file exists and shows it as ...
1
vote
0answers
63 views

NSNotification not sent/received

I've been trying to figure this out for a whole day now and I'm starting to become desperate... So here is my problem: I have a table view controller showing a list of files. The user can download ...
1
vote
1answer
102 views

Does NSSet's containsObject: test for pointer equality or value equality?

Say I have an NSSet with a string in it. If I send containsObject: with another string which is a different pointer but the exact same string value, will that return YES? Also, is it the same story ...

1 2 3 4