Tagged Questions
1
vote
1answer
20 views
How to make alternative name for UILabel's text attribute?
Probably a real newb question. I've got a UILabel called routeOutLabel. I want to make it easy to access its text attribute.
I was thinking of doing something like this:
@synthesize routeOutText = ...
0
votes
1answer
28 views
Property doesn't match type of instance variable?
I took some sample code from Apple's SimpleFTPSample
Which looks like this:
@interface PutController () <UITextFieldDelegate, NSStreamDelegate>
...
@property (nonatomic, assign, readonly) ...
0
votes
1answer
64 views
Are all objects in objective-c basically pointers?
I know there are differences between C/C++ and Objective-C, but what is the case when it comes to the pointer-mark *? Is this not used for pointers in Objective-C, or are all objects pointers in this ...
0
votes
1answer
43 views
Why can I modify a const __restrict pointer but not a typdef'd version?
Note: I'm using the objective C compiler that ships with the latest version of Xcode.
Why is it that this is legal:
void verySpecial(const float* __restrict foo, const int size) {
for (int i = ...
0
votes
3answers
55 views
Where to put the * Asterisk on Objective C Pointer Variables [closed]
Just a quick question - what is the difference (if any) between:
NSObject* myObj
and
NSObject *myObj
and even
NSObject * myObj
?
1
vote
1answer
69 views
Using NSCopy to Copy a Custom Object Containing Pointers?
I am learning how to use NSCopy. I want to make a copy of a custom object I am using, which is an ImageView in a UIScrollView.
I am trying to implement NSCopying protocol as follows :
...
0
votes
1answer
50 views
Pointers and dictionary : copied or stored?
It seems that the object stored in a dictionary is a copy of the original object !
So strange !!
In the following code,
myData = [NSMutableDictionary dictionaryWithObjects:[NSArray ...
0
votes
2answers
64 views
How to pass the result of a function as a Macro variable?
Say I've set up a macro expansion as follows...
#define WARN_START @"DANGER"
#define WARN_RESET @"THE COAST IS CLEAR"
#define WARN(x) WARN_START x WARN_RESET
INPUT WARN(@"*** Your boss is coming. ...
0
votes
2answers
70 views
Function to return sum of *Fraction objects in an array not working
For the code below...
1) Is *sumFrac, located within the function, released when I call [result release] in the main program?
2) Why am I receiver a compiler error when I attempt to release the ...
4
votes
5answers
114 views
Why does object have a pointer and not an int?
If we type
MyObject *obj = [[MyObject alloc] init];
"obj" is a pointer to the memory address.
...When we create an int, we type:
int x = 10;
Why don't we type?
int *x = 10;
The ...
0
votes
1answer
38 views
Different Output When Stepping Through Program
EDIT: Here is a gist of the program
I'm completely confused by this, here's my main program:
NSString* binPath = [NSHomeDirectory() ...
0
votes
4answers
84 views
How to set properties of an object, for which Xcode is unaware exist, but do
I suspect if I knew how to word this question, my searched would have found it. So, please bare with me.
Edit - I've revised to clarify.
//myViewController.h
@property (strong, nonatomic) ...
0
votes
3answers
83 views
Incompatible pointer types initializing 'NSDate
I am setting up some constants, one being an NSDate but receiving this wanring message:
Incompatible pointer types initializing 'NSDate *const __strong' with an expression of type 'NSString *'
...
0
votes
3answers
142 views
Compare enum with NSNumber
I am doing some drawing and have a class named Draw2DHelper that defines an enum of constants for the types of drawings I'm making, and a property drawingType that uses the types:
enum {
...
-2
votes
1answer
71 views
Changing a variable's value through another variable
How can I substitute one variable a for another variable b, in order to change b?
For example:
NSString *a = @"a";
NSString *b = @"b";
NSString *c = @"c";
a = b;
a = c;
In this case, the value of ...
0
votes
3answers
146 views
What does double pointer mean in Objective-C? [duplicate]
I begin to learn an Objective-C after 5 years of experience in Java and don't understand some of it's constructions. What does this Some_Object** mean? For example in the method definition here:
- ...
-1
votes
1answer
54 views
C program not compiled properly on Objective-C Compiler [closed]
I'm relatively new to Objective-C
I know its a superset of C. But when I try to compile this C code in GCC it gives me an error and Im not able to execute the code.
#include <stdio.h>
int ...
1
vote
1answer
224 views
Cast NSURL ** to CFURLRef *
How can I compile the following code using ARC?
int main() {
NSURL *url = [NSURL new];
NSURL * __strong *urlPointer = &url;
CFURLRef *cfPointer = (__bridge CFURLRef *)urlPointer;
...
5
votes
3answers
164 views
What is the biggest advantage of using pointers in ObjectiveC
I realize 99% of you think "what the h***…" But please help me to get my head around the this concept of using pointers. I'm sure my specific question would help lots of newbies.
I understand what ...
2
votes
4answers
84 views
How to determine when the value pointed to by a pointer is nil
I have a situation where troops can attack buildings. Each troop keeps a pointer to its target.
@property (nonatomic, weak) Building *target;
In an update loop, the troops periodically cause damage ...
1
vote
1answer
114 views
Double pointers element access using 2-dimension array syntax in objective-c
I am new to objective-c and am doing something that works for the moment but am afraid might break someday.
In one of my object, I declare a matrix of integer as instance variable. As I do not know ...
0
votes
1answer
69 views
Objective C - Qty in an array is always reset to zero, but why?
I am trying to do a program where there is a product which I wish to be moved into a storehouse.
Example:
Move 25 crates of Apples from Inventory (on hand) to a Storehouse.
When I add the ...
1
vote
4answers
105 views
How dangerous is it to use pointer-style assignment versus setter-methods in Objective-C?
Lets say I have a simple class like the following:
@interface A {
// @public
int var;
}
// @property(some_property) int var;
@end
When I want to access the variable var, I have some options. ...
1
vote
3answers
95 views
passing a pointer to an object inside of an NSArray using ARC
I'm converting to ARC, and can't find any way to get rid of this compiler error without breaking the code as well.
I need to pass 2 objects into a selector so I add them both to an array as shown ...
0
votes
1answer
56 views
Variable memory address attribution EXEC_BAD_ACESS
I have an allocated object where its attributes are store in the following memory places:
When I make a simple attribution of the NSDate attribute to a variable it gives me an EXEC_BAD_ACESS.
As you ...
2
votes
1answer
112 views
What is the difference between C pointer and Objective C pointer?
I know its a very basic question. Got some memory issues I need to clarify. Here is my doubt:
int *p = malloc (50); // will allocate 50 bytes and it is pointed by p.
// Freeing C pointer-->
...
1
vote
1answer
40 views
Repointing a pointer inside an Objective-C method
Firs of all, sorry if my english is not absolutely correct. It's not my native language but I'll try to explain myself the best I can.
I'm having a hard time trying to understand the following issue. ...
-1
votes
4answers
70 views
performSelector:withObject:afterDelay: won't accept my custom UIImageView pointers, why not?
Okay guys...
Hopefully this will be another quickie.
I have a class MonsterView, extending UIImageView, extending NSObject.
I have declared a MonsterView pointer called myMonster that contains an ...
0
votes
1answer
115 views
Objective-C retain count on assigning object to new pointer
Disclaimer: I'm pretty new to Objective-C
I'm in a command-line project
ARC is NOT enabled
I have a class called MyClass
@interface MyClass : NSObject
@end
@implementation MyClass
@end
and my ...
0
votes
1answer
42 views
MacRuby pointers and Obj-C function returning a value by reference
I am trying to implement the following method of NSAttributedString in Macruby:
(id)attribute:(NSString *)attributeName atIndex:(NSUInteger)index effectiveRange:(NSRangePointer)aRange
As by ...
0
votes
1answer
30 views
Can pointers of one class contain extended classes without problems?
I am newish to Objective-C. I am trying to determine if having a pointer for one class, then assigning an extended class to that pointer instead, will cause problems. For instance if ClassB extends ...
0
votes
1answer
183 views
Can transformable attributes in Core Data entities be pointers to c structs? My transformer is not being called
I'm trying to make a CoreData-persisted entity. This entity has a few properties, one of which is a non-standard attribute, state. The state attribute is a pointer to a C struct with a few ...
0
votes
2answers
179 views
objective-c: does addObjectsFromArray copy objects?
Having a hard time figuring this one out...
does addObjectsFromArray, a convenience method inside of NSArray copy everything, or does it keep the 'otherArray' parameter where it is in memory and do a ...
0
votes
2answers
59 views
In a method does the pointer or actually object get passed as a parameter?
I have been messing around with a bit of code to try and get my head around pointers and memory management in objective-c. However, what I can't seem to understand is that using this code:
hello ...
0
votes
5answers
74 views
Objetive-C: a Pointer That Points to Difference Classes at Different Time
I'm not really experienced with Objective-C. Here is a problem I encountered.
When I want to define a pointer for a particular instance of a class, I can
NSString* foo;
But is it possible to ...
0
votes
5answers
169 views
pass pointer to method in Objective-C
Merry Christmas everybody :)
I have a pointer problem. Although I´m familiar with pointer concepts I haven´t used pointers in Objective-C so far the way it´s described here.
I modified it like this:
...
0
votes
1answer
158 views
Build an array of pointers from existing pointers
I have a class which must initialize a group of similar objects the same way.
NSNumber *a = nil;
NSNumber *b = nil;
NSNumber *c = nil;
a, b and c are member variables of an existing object. In my ...
1
vote
1answer
47 views
Function calls with pointers in Objective C
I'm a newbie in Objective C, used to write C. Anyway, I have a class called DataProcessing:
DataProcessing.m
...
- (BOOL)MyStringTweaker:(NSString *)strIn : (NSString *)strOut {
if(some_thing) {
...
0
votes
2answers
152 views
Core Data Save Managed Object Context - error pointer is nil
I'm getting an error on a when saving changes to the managed object context, but I have a problem with my error handler: the error is nil, and thus gives me no useful information. I have two versions ...
0
votes
1answer
117 views
ObjC : NSLog a pointer name
I filled a NSMutableArray with 3 class instances I created. Now I want to iterate this array to get some variable values. I'm able to do so, but not able to print my instance name (bread, water, ...) ...
1
vote
3answers
253 views
Using multiple times appDelegate in the same UIViewController
I am new to objective-C and cocoa.
In my UIViewController I need to access AppDelegate multiple times in different methods
A. Is calling in every method:
AppDelegate *appDelegate = [[UIApplication ...
0
votes
2answers
59 views
memory/pointer behavior for self = [super init]
Forgiveness, please: I am a beginner. I was looking at another quesiton/answer and came across this code:
SpinningView *spinner = [[SpinningView alloc] initWithFrame:CGRectMake(0.0, 0.0, 20.0, 20.0)]
...
2
votes
3answers
222 views
iOS Pointer Issue
I seem to have a pointer problem and I can't seem o fix it. Could someone help me, please?
-(void) connectionDidFinishLoading:(NSURLConnection *)connection{
NSLog(@"Finished Downloading Image: ...
0
votes
2answers
33 views
Method not performing well
I'm new to iPhone dev, and very rusty with C-style programming, namely pointers. I made a RGBColor class that holds three ints for red, green, and blue. In this class, I have a static method to return ...
0
votes
1answer
44 views
Using pointers to adjust global objects in objective-c
Ok, so I am working with two sets of data that are extremely similar, and at the same time, these data sets are both global NSMutableArrays within the object.
data_set_one = [[NSMutableArray alloc] ...
2
votes
3answers
78 views
How to do pointer work with accessor methods in Objective-C
Basic problem statement:
I have a very good reason for doing some pointer fanciness in an app where I need to pass a decimal by reference.
So I have a class which stores many a decimal, so let's say ...
0
votes
2answers
107 views
Force ARC to retain an object reference by a void pointer
Let's say that I have this property:
@property (nonatomic, readwrite) void*** array;
And init the array with objective-c objects:
- (id) init
{
if(self=[super init])
{
array= ...
1
vote
1answer
64 views
Do methods that return pointers to different objects alloc and init that other object automatically?
Let's say I have this code:
NSString *inspDate = @"20120515";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyyMMdd"];
NSDate *inspectionDate;
...
-3
votes
2answers
91 views
Objective-c Print a Const Void Variable [closed]
print the value of a const void* what i need do ?
for example:
- (void) printConstVoid:(const void*)value
{
NSLog("%?",value); //or anything else print the value
}
thanks a lot.
2
votes
2answers
64 views
Getting my head around the practical applications of strong and weak pointers in Objective-C
I've just read the accepted excellent answer to this question that clarifies the conceptual differences between strong and weak pointers in Objective-C, and I'm still trying to understand the ...


