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. For questions about ...
0
votes
0answers
16 views
SSL Pinning on iOS
To improve my app's security and protect the user from MITM attacks I'm trying to do SSL pinning with my self-signed certificate following the content of this post.
So I'm using the following code to ...
0
votes
0answers
15 views
Can not resolve linker errors after Xcode crash
Hej,
after Xcode (4.6.2) crashed on compiling I get errors like:
Undefined symbols for architecture i386:
"___objc_personality_v0", referenced from:
[...]
"__objc_empty_vtable", referenced from:
...
0
votes
0answers
8 views
Setting NotANumberSymbol to an empty string?
why NSNumberFormatter's method setNotANumberSymbol:(NSString *)string ignores the empty string as a parameter (@"")? It even ignores the string, if it contains only spaces and zeros (@" 0 0 0 ")?
Is ...
0
votes
0answers
18 views
Get an error while trying to configure JavaCV on mac : can't find Foundation.h
I'm trying to install and configure JavaCV on my mac following this link:
http://askhackeryoda.blogspot.fr/2012/05/configure-javacv-on-mac-os-x.html
But I'm stuck at the 3rd step, when I do sudo ...
1
vote
1answer
40 views
NSJSONSerialization output number as float?
I'm using NSJSONSerialization to convert a dictionary into JSON.
If I include an NSDecimalNumber ( == 0 ) in that dictionary it outputs as 0. This is wrong. 0 is an int. I need it to output as 0.0.
...
0
votes
4answers
43 views
split NSString using componentsSeparatedByString
I have a string I need to split. It would be easy using componentsSeparatedByString but my problem is that the separator is a comma but I could have commas that aren't separator.
I explain:
My ...
0
votes
2answers
27 views
Console application - NSBundle can't get file path
New to Mac console applications. Never done it before, but I want to code with Objective-C, so I chose "Foundation" while creating the application with Xcode.
int main(int argc, const char * argv[])
...
0
votes
2answers
21 views
NSString compare efficiency
String compares can be costly. There's some statistic floating around that says a very high percent of string compares can be eliminated by first comparing string sizes. So I'm curious to know ...
0
votes
0answers
26 views
Workflow Foundation - Advice on a simple process
I am starting on Workflow Foundation 4 and i've been asked to do a simple example to show to a client (unfortunatly in a tight timeframe) and i could use some help on how to start with it.
The ...
0
votes
0answers
21 views
NSCharacterSet unable to find bitmap for letterCharacterSet.bitmap
I am compiling a fairly large command-line app written in Objective-c (using xCode on a Mac) on a direct install of the Cocotron Foundation libraries on Linux CentOS 6.4 /Clang 3.3 /llvm 3.3. I now ...
0
votes
0answers
18 views
ImportError: No module named Foundation (lightblue)
Im trying to use the lightblue module for python, i installed it without problem, but when i try to import it, it gives me the error "ImportError: No module named Foundation" used inside lightblue. ...
0
votes
0answers
41 views
Team foundation server: Working offline results in tons off online check-in errors
I'm using Team foundation server in Visual Studio 2012.
I'm very noobish with Team foundation server. I'm the only one working on the project, so I use only the basics: 'Go-Online' and 'Check-in' .
...
1
vote
0answers
14 views
automatically updating a SP Foundation list
I'm REALLY hoping someone can help me here... I'm developing a database for my employer using SharePoint Foundation. The database contains 26 columns and around 100,000 rows (a Business Contacts ...
1
vote
2answers
101 views
ASP.NET using class(static methods) in .aspx design form's head section
Basically I am trying to integrate Foundation 4 framework into ASP.NET project. I have made a class in App_Code where I have made static methods which contains all the css, js links. Now I want to use ...
-3
votes
1answer
50 views
replaceObjectAtIndex: withObject: in NSMutableOrderedSet is not working [closed]
I had a necessity to maintain a mutable ordered set.When I tried swapping objects in two positions it does not work.
NSValue *selectedstudent = [nodePositions replaceObjectAtIndex:selectedIndex];
...
0
votes
1answer
32 views
Foundation command line tool, file from arguments
I am creating a command line tool in Xcode using the foundation framework and I am confused on the basics of dealing with file paths. The first argument is to be a file (myfile.txt) or file path ...
0
votes
2answers
72 views
Is it safe to use removeObject: during enumerateObjectsUsingBlock:? [duplicate]
This code runs without crashing and I don't see anything in the documentation, but is it really safe?
[mutableArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
// do some ...
0
votes
2answers
95 views
Why is init not a class method?
Why is the init method not a class method? I mean init's method body starts with an -.
Methods starting with - are instance methods as far as I know, but obviously we want to create an instance.
0
votes
0answers
25 views
How to completely reset/clean foundation project xcode
I created foundation project and added core data to it. Now I need to reset it. In case with iOS project deletion application from simulator was enough. But what in case foundation project?
0
votes
5answers
202 views
How do I create dummy JSON data on the client in objective C / iOS?
I want to set up static dummy data, in JSON, for my app to process. This is purely client-side; I don't want to retrieve anything from the network.
All the questions and answers I've seen so far ...
0
votes
1answer
56 views
Can't get the CFBundleIdentifier from dynamically loaded NSBundle
I'm trying to load a bundle dynamically, to be used in place of the mainBundle in few cases.
I managed to load the bundle with some resources, like Localizable.strings and so on.
And when I use ...
3
votes
1answer
115 views
How to integrate iCloud on a non Document-based app?
I've read the Apple docs and Ray Wenderlich's tutorial. It seems that I'm forced to use UIDocument so I read it up in the docs. I've found that it's effective to use Document-based approach.
My ...
5
votes
2answers
159 views
Is NSObject class a part of the Objective-C runtime library today (instead of being a Foundation component)?
Looking at the Mac OS X 10.8's version of the Objective-C runtime library source code, I noticed that it's got a NSObject.mm file. As its name suggests, it's got the NSObject class implementation, as ...
1
vote
1answer
140 views
NSLocaleCountryCode returns nil
I have a bugreport that states a crash in the following line, where client is an instance of NSMutableDictionary
[client setObject:[[NSLocale currentLocale] objectForKey:NSLocaleCountryCode] ...
-1
votes
1answer
69 views
how to link uikit app on iphone?
I use ssh to iphone, and can compile console apps on iphone using clang or gcc. But now how can I link against UIKit? Compiler finds headers and stuck at linking.
what args I should pass to clang? ...
3
votes
2answers
156 views
plist XML string to NSMutableDictionary
I am storing some dictionaries in plist files (iOS), which are subsequently encrypted.
After reading the file contents and decrypting them I am returning the xml contents of the file in a string:
...
0
votes
1answer
51 views
Finding the number of PDFs in a folder [duplicate]
I have a button in an app that when clicked should cause a dialog box to open. The user then chooses a folder, clicks OK, and then the app displays the number of PDF files in that folder.
I have the ...
0
votes
1answer
35 views
Team Foundation Explorer plug-in
I am using Team Foundation Explorer plug-in for Eclipse on OSX. Is there a way to get a view like the one that Visual Studio shows you in Eclipse?
For example:
0
votes
1answer
72 views
applicationBadgeNumber doesn't increment
So far I've found that I can't increment the app badge number through local notifications. So doing something like this:
self.notification.applicationIconBadgeNumber = [[UIApplication ...
1
vote
1answer
58 views
Access what property of the sender was passed into a method
This may be a ridiculous question, but I have a method like this in my view controller:
[self registerProperty:self.currentUser];
and in the implementation of registerProperty: I would like to get ...
0
votes
1answer
73 views
iOS app breakpoints on running
I'm an experienced developer, but new to iOS/Objective C.
The app below builds OK (modulo any typo/cut'n'paste errors).
When I run it, it breaks in the print method, in a way that makes it look like ...
0
votes
0answers
45 views
Providing a sharepoint 2010 Foundation solution to all pages without activation
I am a bit puzzled with the different possible combinations in Visual Studio 2010 to change masterpage layout in Sharepoint 2010 Foundation.
I need to add two JS Files, one CSS File and some images ...
0
votes
0answers
160 views
Change external content type name on an external list
After our sharepoint server died, we recovered the site collection to a new server
However the External lists are now pointing at a content type that doesn't exist, so we get this error
Entity ...
1
vote
3answers
67 views
In which WWDC session video did Apple show the API for localized time interval formatting?
A long time ago I watched a WWDC session video where Apple introduced an API which would print a time interval in a humanly readable, localized form.
Instead of printing a date when someone posted a ...
0
votes
2answers
97 views
Arithmetic Operators and Key-Value Coding
Is it possible to do arithmetics using Obj-C Key-Value Coding? I am looking for something like this:
[obj valueForKeyPath:@"(val1+val2)"]
or du you have to implement a property that adds the two ...
2
votes
3answers
82 views
What is the appropriate way to swap endianess for signed integers?
On mac os x I have been using the NSSwap*ToHost family of functions for unsigned integers.
What is the correct way to do this for signed integers of size 8, 16, 32 and 64? I've seen the ntoh* ...
0
votes
0answers
38 views
Synchronising Transactions with Spring Framework, NHibernate and WF4
I'm needing a help with the following scenario. I have a service that initiates a transaction, this transaction is managed by Spring Framework, therefore the transaction is created in an aspect. The ...
0
votes
0answers
122 views
NSTextView with shadow
I'm trying to add a nice looking shadow to a NSTextViews string, I have this Code so far:
NSShadow *textShadow = [[NSShadow alloc] init];
textShadow.shadowColor = [[NSColor blackColor]
...
0
votes
0answers
137 views
Xcode assertion failure messages do not show up in console log
I am using the latest Xcode, and have placed NSAssert() calls inside of my code. When one of the assertions fails, execution halts, and the console log states that an assertion error has occured, but ...
2
votes
2answers
139 views
How to autorelease a non returned object under ARC
Consider a function like this one:
void* getData()
{
void* data= malloc(32);
NSData* __autoreleasing dataObject= [NSData dataWithBytesNoCopy: data length: 32 freeWhenDone: YES]
return ...
1
vote
1answer
120 views
How does the NSBundle's -load method register classes and other runtime resources with the Objective-C runtime?
Foundation's NSBundles are the best way to load dynamic code in Objective-C. The -load method dynamically loads the bundle's executable code into a running program.
But, which Objective-C runtime ...
2
votes
1answer
99 views
Pass xpc_object_t through NSXPCConnection
I am new to XPC service programming, and I am trying to share a IOSurface created in a XPC service to the host application. I can setup a simple host and service using NSXPCConnection API, and now I ...
0
votes
2answers
100 views
iPhone SDK: How to extract this number from a string
I have a script for an application and I'm stuck on a way to extract a specific number
For example in:
\n@JulianJear\nApplication Development 4 iPhone and iPad.\n5\n
I haven't been able to come up ...
4
votes
1answer
89 views
Workflow foundation, Transactions and Bookmarks
We are developing an application using Workflow Foundation 4.
We expect to use multiple activities each doing database updates within a transaction.
We would also like to pause and resume the ...
3
votes
1answer
87 views
Comparing pointers of NSNumber objects instantiated with const integers
Today I was reviewing some code and I have been totally fooled. I saw something like this in the code
...
NSNumber *myNumber = [NSNumber numberWithInteger:4];
...
if (myNumber == [NSNumber ...
3
votes
1answer
105 views
NSURL - No mutable subclass, so no need to “copy” as a property?
@interface SomeClass : NSObject
@property (copy, nonatomic) NSString *usefulString;
@property (strong, nonatomic) NSString *dangerousString;
@property (copy, nonatomic) NSURL *curiousURLOne;
...
5
votes
3answers
172 views
What is the purpose of the -self method in NSObject-conformant classes? [closed]
That's it. Why would anyone want (at least as a public API) a method such as that?
0
votes
1answer
29 views
Can't use method on an instance variable
Why doesn't testVariableValues have the method dictionaryWithObjectsAndKeys?
@property (nonatomic, strong) NSDictionary *testVariableValues;
I'm trying to use the method like so:
...
1
vote
1answer
64 views
How to use block in the macro
I am trying to use block in macro definition but without a luck.
Here is the code:
#define IPHONE_OR_IPAD_BLOCK(void(^iphoneBlock)(void), void(^ipadBlock)(void)) ({ \
if (iphoneBlock && ...
2
votes
2answers
197 views
Microsoft Solver Foundation Modulo Operator
I'm trying to add a basic constraint to my solver foundation by doing the following:
model.AddConstraint("c1", x % y == 0);
I get a compile error saying "Operator '%' cannot be applied to operands ...

