Tagged Questions
0
votes
2answers
22 views
Failing to import c-file in objective-c
I'm currently trying to compile my project just after adding some C code.
I'm using the Paul Kocher's blowfish algorithm implementation available on Bruce Schneier's website.
Since I included ...
0
votes
5answers
61 views
Does the latest enum value will always be higher than the first enum value?
I have a question about enum : when I create an enum, does the latest value will always be higher than the first value of the enum ?
Maybe an exemple will be helpful to understand what I mean :
...
0
votes
2answers
78 views
Set object into C array at first available index
I have an array of box2d bodies, initialized like this:
b2Body *touchedBodies[10];
I need to populate it with several b2Bodies, and I want to set the next b2Body into the first available place -- ...
-1
votes
1answer
17 views
write char[] to NSOutputStream and read from NSInputStream
I am trying to write to NSoutputStream as below:
+(void)write:(char[])data
{
int size=(sizeof data) / (sizeof data[0]);
[outputStream write:(const uint8_t *)data maxLength:size];
}
is this ...
0
votes
1answer
60 views
Convert integer to hexadecimal
I just need to convert integer to hexadecimal. Actually I have a char array in which I am storing hex values.
int var;
var=[self getValue];
char hexValues[5];
hexValues[0]= 0x02;
hexValues[1]= 0x04;
...
0
votes
2answers
67 views
Obective C create a C array property
I'd like to create a property made by an array of CGRect pointers, the number is not defined at the beginning, so I'd like to create a pointer of to a zone o memory that contains the beginning of this ...
0
votes
2answers
99 views
Can Object C compile to C?
Can i compile an objective c program to c?
I'm interested if this can be done so that it can be compiled with other c compilers.
I am aware that GCC can compile objective c.
0
votes
0answers
28 views
build a simple Object Relation Mapper(ORM) [closed]
I want to build a simple Object Relation Mapper(ORM) :) in Objective C. This Library must be able to persist and load object from an sqLite data base. For example for an Object like NSString.
My ...
2
votes
2answers
67 views
Mixing C with Objective C
I'm a little confused as to whats going on in this snippet of example code.
I am creating a property called 'processingGraph' of C struct 'AUGraph'.
I then pass this struct to the Objective C method ...
-2
votes
8answers
141 views
When to use “ . ” or “ -> ” operators to access attribute or member function? [closed]
In both C, C++ and Objective-C, we can use . or -> to access values or functions. What are the differences or drawbacks between the two?
1
vote
2answers
73 views
Is using too many static variables in Objective-C a bad practice?
Will usage of static variables expose them to a danger of being modifiable from anywhere ?(In context of Objective-C). If yes, can someone suggest best alternatives for using shared variables across ...
0
votes
3answers
63 views
Some C functions in iOS duplicated as #define
C functions like memcpy and memset are available as C functions as well as #define in iOS:
For example the #define memcpy, under the hood, is:
#define memcpy(dest, src, len) \
...
0
votes
0answers
18 views
OS X - broadcasting HID events
Good afternoon everyone.
I have a USB gamepad that I'm attempting to write a user-space driver for. Originally, I wrote the driver to work with Linux (using libusb), and everything seems to work ...
1
vote
0answers
39 views
Rendering to a texture via FBO
I am trying to apply post processing effects to a small test program for OS X. I am trying to render the image into a texture and then render the texture to the screen (i haven't even gotten to ...
0
votes
1answer
37 views
Calculation returns 0 objective-c [duplicate]
I'm trying to calculate an average where i am getting the value from a textfield and multiplying it by the value of a label.
int grade1 = [[self.Cw1Grade text]intValue];
int grade1weight = ...
3
votes
3answers
64 views
Option to display formatted C program in iOS
What are the option that I can use to display formatted C Program in iOS. What I can think of right now is
1. Make a HTML file with code in it, and find some CSS to display in web view. Not a good ...
0
votes
1answer
17 views
Corefoundation CFArray ownership
I found a strange problem while using Core Foundation Array! Here is the code snippet
fname = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%s%s"), path, ep->d_name);
...
0
votes
1answer
63 views
using native objective-c method for C callbacks
I want to callback an objective c method from c.
//c
int gameEngineCallback(int buttontype,void (*callback)(void))
//using above function
gameEngineCallback(roundButton,callback);
//this works ...
1
vote
2answers
51 views
How to show a progress bar while encoding to .mp3, using LAME on the iPhone?
I'm using LAME to encode a .caf audio file to .mp3 on my iPhone app.
All works perfectly and I'm just having a difficult time trying to figure out how to log the progress of the audio file conversion ...
2
votes
2answers
59 views
How do include a .c file to my ios app?
I have file.c file that I want to add to my ios app. I renamed it to file.m, rename the main() to main2() and included it in my project in xCode. It compiles fine but how do I run main2()?
Could ...
-10
votes
3answers
112 views
Calculate the sum of numbers between 1 and 100 that end in 5 [closed]
I'm trying to calculate the sum of all the numbers between 1 and 100, but only those numbers that end in 5: 5, 15, 25, and so on.
I have no idea how to do this; I know how to calculate a sum, but not ...
4
votes
2answers
92 views
Sorting an array against another array with substitution
I have an array of days (in string format) that my program receives from user input that is somewhere between 1-7 in length. The array that is received has the day name in full text.
An example of ...
0
votes
0answers
32 views
Perspective Matrix - Calculate distance from camera to get 1:1 world unit:pixel ratio [closed]
I'm currently working in OpenGL ES2 on iOS.
I have a plane that is parallel to the camera.
Using my perspective matrix and viewport size, how do I calculate the distance the plane must be from the ...
3
votes
2answers
51 views
Compiling multiple Objective-C files on the command line with clang
Hopefully simple question. I'm trying to learn basic Objective-C compiling from the command line, with clang. I understand that Xcode is a better solution for complex projects and I plan on moving to ...
0
votes
1answer
24 views
libcURL code not working, says I'm uploading to the server w/out a file name
While working on an FTP uploader using , I encountered a strange error that is really stumping me. I've gone through the documentation, and I'm really confused. It's connecting to the right server, ...
0
votes
4answers
71 views
Why is only the numerator cast to float to obtain a float quotient while dividing two integers?
I am just starting out with Objective-C,and with C in general,so I suppose this is a C question as well.It's more of a why question rather than a how question.
I noticed that while dividing two ...
0
votes
1answer
84 views
Keeping a c array in memory, to be able to access it later with a pointer
I want to have a ivar which is a pointer to the first element of a c array, but I want that ivar to be able to access the other elements in that c array.
@interface myClass : NSObject {
int * ...
0
votes
1answer
45 views
Checking to see if a structure exists? [C]
Background: I created a Hashtable in a file called hash_table.c. Here is part of what my header file hash_table.h contains:
/* hash_table.h */
#ifndef HASH_TABLE_H
#define HASH_TABLE_H
enum ...
2
votes
4answers
150 views
Does Apple Only Allow Objective-C?
I'm wondering if I could develop a app using XCode, in a language other than Objective-C such as C, C# or C++. If so, how would I go about doing that? Is there anything special I have to use?
-3
votes
1answer
51 views
What is the most common way to develop a iOS app? [closed]
Just wondering if all developers who use XCode develop in the same way. As in, would the developers or Angry Birds make View Controllers? Is there only one way to go about developing apps in XCode, ...
0
votes
1answer
56 views
Is it possible to get the launch time of PID?
I have a code that is floating around here for a while (the code is working for me):
- (NSArray *) runningProcesses {
//CTL_KERN,KERN_PROC,KERN_PROC_ALL
int mib[4] = {CTL_KERN, KERN_PROC, ...
0
votes
1answer
42 views
Store bytes into correct wrapper
I am currently developing an app for iOS that parses libcap formatted files. For that, I need to implement the different protocols that will appaear in the files I parse. My problem is that I don't ...
0
votes
2answers
57 views
What to use for Objective-C objects instead of structs when using ARC?
ARC forbids Objective-C objects in structs or unions.
Unless you add __unsafe_unretained which means its not managed.
I was wonder what people are using in place of structs now if anything?
Or are ...
1
vote
1answer
41 views
LDAP Authentication, ldap_sasl_bind_s not working but ldap_simple_bind_s works
I have a problem where in ldap_sasl_bind_s does not work, but ldap_simple_bind_s works.
The strange thing is, ldap_sasl_bind_s works even with wrong passwords and gives user the feeling that he has ...
0
votes
1answer
33 views
Objective-C Array-Style Subscripting with C pointers?
I love the new Objective-C subscripting:
id anotherObject;
someObject[2] = anotherObject;
But is it possible to implement it for non object types though? e.g. void *?
void *myPointer;
...
-2
votes
0answers
39 views
Benchmarking algorithm that will benefit from running on GPU
I would like to try and experiment a little with parallel programming on OS X, diving into Grand Central Dispatch and OpenCL, just to play around and gain some knowledge of it all. But I need some ...
2
votes
1answer
67 views
Is there an equivalent to __attribute__((ns_returns_retained)) for a malloc'd pointer?
I'm looking for an annotation something like
-(SomeStruct *) structFromInternals __attribute__((returns_malloced_ptr))
{
SomeStruct *ret = malloc(sizeof(SomeStruct));
//do stuff
return ...
2
votes
5answers
98 views
Init to zero a static 2D array at its declaration
I'm developing an iOS 5.0+ app with latest SDK.
I have to declare an initialize a private 2D array this way, because I'm going to use it on a C++ function:
@implementation MyClass
int ...
15
votes
2answers
300 views
Objective-C variable… pointing to itself?
I spotted this construct in some of Apple's example code for dealing with key-value observing. When adding an observer, you can add a context (in the form of a void* variable) that can uniquely ...
0
votes
2answers
63 views
Object-C call C function to read a file
I'm working on a iPhone project and I need to call some C functions which is in a C file like myfile.c. And I can call some functions in it. But when I need to open a file in the C file. I got bad ...
2
votes
1answer
57 views
Why is UIGraphicsGetCurrentContext() available globally?
From Apple iOS Documentation #UIGraphicsGetCurrentContext: "In iOS 4 and later, you may call this function from any thread of your app."
Also, why is the method call in C function format
...
0
votes
1answer
52 views
How do headers work in Objective-C?
Beyond allowing one file to use another file's attributes, what actually happens behind the scenes? Does it just provide the location to access to that file when its contents are later needed, or does ...
-1
votes
1answer
97 views
How do I edit memory address values on a Mac? [duplicate]
I am programming a Mac-based memory editor for a game I play. How do I edit memory address values? I'm open to using Objective-C, C, or C++. I'm programming in Xcode.
You can "Attach to process" so ...
0
votes
2answers
59 views
How to get the current instance of an object from a C function
I implemented a C callback in the implementation of an object which is used by a function from a private framework, so I have no control on the arguments passed to the callback. I would like to use ...
0
votes
1answer
41 views
Efficient storage of two dimensional data that enables “rotation” of the data by row or column
I'd like to store a two dimensional array of data that makes it possible to easily "rotate" the data either by row or column.
For example, considering the following initial state
A B C D
E F G H
I J ...
-4
votes
1answer
46 views
Create IOS 3D effect [closed]
How would you go about implementing this kind of 3D effect:
http://www.youtube.com/watch?v=1i2JnJWdCeM
Thanks in advance
0
votes
1answer
86 views
C-style Multidimensional Array in ARC Objective-C
I'm trying to implement an n x n multidimensional array of ints in Objective-C, and because using NSMutableArray seems to be too much of an overhead I decided to implement it using only C's malloc and ...
4
votes
3answers
144 views
Declaring and checking/comparing (bitmask-)enums in Objective-C
You know in Cocoa there is this thing, for example you can create a UIView and do:
view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
I have a custom UIView ...
-1
votes
1answer
74 views
calling c functions in Objective C [duplicate]
Hi I am trying to use some pure C library in an iOS app, however I have no clue how to call and pass the parameters. Here are 2 functions, Node is a struct:
Node *parse(FILE *f);
void ...
0
votes
3answers
45 views
NSString not mantain value after “blanking” of a source NSMutableString
this is a more theoretical question than pratical;
Assuming that i have two Strings, one normal and one mutable, if i do:
NSMutableString *prova = [[NSMutableString alloc] init];
NSString *prova2 = ...



