A C struct with an x and a y member, each of type CGFloat, that is used in iOS SDK CoreGraphics.

learn more… | top users | synonyms

0
votes
1answer
12 views

CGPoint PreviousLocation - UIGestureRecognizer

I know it seems like it's a fairly easy to do, but i can't seem to figure it out and i've researched a lot of places but really what i want it's no where. i'm creating a puzzle game and the images ...
0
votes
1answer
11 views

CGPoint values in setContentOffset

So, I'm making a scroll up and a scroll down button on a UIWebView. Ideally, the user will have the option to scroll through it with their finger, or by tapping the button. Like when they tap the ...
0
votes
1answer
34 views

CGPoints of a UIView

How do we get all four coordinates of a UIView? I thought this would be it. CGPoint viewOriginX = [self.view convertPoint:self.view.frame.origin fromView:nil]; But what about CGPoint of the top ...
0
votes
1answer
38 views

Scale CGPoints to a bigger display

So I worked on an iPhone game several years ago that uses CGPointMake calls hundreds of times for some OpenGL stuff. That was back when 480 was the only size for landscape phones, but now I'd like to ...
0
votes
1answer
41 views

Why are my CGPoints all returning as {0,0}?

I am trying to store the locations of 10 UIImages I have stored within a UICollection and placed using the interface builder. I am trying to do so using View.center but all my CGPoints are returning ...
1
vote
2answers
47 views

Get edge/outer coordinates of CGPoints

I have a faeture that user can draw/color a specific area of an image then get the drawn area as a cropping result. Currently I store the draw coordinates inside an array, and in the end of the ...
0
votes
1answer
28 views

Best way to get the nearest intersection point in a grid

I'm using Cocos2D for iPhone to build up a game.I have a grid on the screen drawn by horizontal and vertical lines.(I did it with CCDrawNode) As you might guess there're lots of intersection points in ...
0
votes
1answer
22 views

Get position of 2nd finger in touch/pinch

How can I get the position of the 2nd touch in a view in iOS? I am using UITouch and I only know how to get the position of the 1st finger if I am doing a pinch gesture. I am doing the pinch gesture ...
0
votes
1answer
39 views

Rotating CGPoints; CIVector CGAffineTransform?

I have 4 CGPoints that form an irregular figure. How can I rotate that figure 90-degrees and get the new CGPoints? FWIW, I was able to "fake" this when the figure is a CGRect by swapping origin.x ...
0
votes
1answer
34 views

In NSMutableArray values' elements changes strangely

This is relevant code: @property (nonatomic, strong) NSMutableArray *coordinateInPixels; ... NSLog(@"First log %@",self.coordinateInPixels); NSLog(@"self.zoomScale %f",self.zoomScale); if ...
3
votes
2answers
46 views

NSPredicate filter class by CGPoint

I have that class : @interface Field : NSObject @property CGPoint fieldCoordinates; @property CGPoint ballCoordinates; @end and i Try filter NSArray of object of this class : NSPredicate * y1 = ...
1
vote
1answer
38 views

Pass CGPoint in Notification of iOS

I want to send CGpoint to my maincontroller class. So I am using Notification to send cgpoint but I dont know how to extract from cgpoint from notification at receiver. I only get 0.00 on my log ...
0
votes
0answers
33 views

Identifying the multiple CGpoint in a view while dragging a button

I have requirement similar to creating a folder and adding files into it... For that I have a scrollview which contains buttons .. I made the buttons draggable.. While dragging if the buttons reaches ...
1
vote
1answer
76 views

get CGPoint from coordinates of map OR get CGPoint from MKMapPoint iphone

Hello for a navigation based application i need to get CGPoint from coordinates OR MKMapPoint of a MKMapView. I want to draw a line between these points but not a poly line. I know all about ...
0
votes
1answer
40 views

i want to make an if statement, so if some images are on a specific coordinate, there will be a sound

i know how to make playin a sound but i don't know how to use the 'CGPointisEqualtoPoint' method. How do i use that or are there other ways? -(void)beloning { if (//CGPointisEqualtoPoint?! ) { ...
0
votes
1answer
56 views

UIImageView bounce forth and back

I've got a UIImage that when I click it, I want it to move 2px in X direction and 2px in Y direction, and then move back to the original position. So that it can be pressed multiple times, and just ...
1
vote
3answers
217 views

Dragging UIImageView from UIScrollView to another view

I have UIScrollView contain many UIImageViews. I need to drag an UIImage from UIScrollView to another view. But my code drags only in UIScrollView.I can't drag an image to outside the scrollView . ...
0
votes
1answer
47 views

popup using tapgesture on a TableViewCell

I have a TableView with custom cells containing multiple labels. I added a tapgesture on one of these labels so a popup will appear. The problem is, the popup doesn't appear where it should be ...
1
vote
2answers
89 views

Create an array of CGPoints by pairing values from two different NSArrays

How to create an array of CGPoints by pairing values from two different NSArrays in objective-c? Lets say I have an Array "A" with the values: 0, 1, 2, 3, 4 And I also have an Array "B" with the ...
0
votes
0answers
51 views

Sudden Changes on a CGPoint to the middle of the View

When I trie to run this code it changes the currentPosition to the middle of the view (I Am making the Ping Pong app with the blocks and the paddle. I am loading the blocks from a Property List. It ...
1
vote
1answer
57 views

Randomly choose between predetermined CGPoints?

I have three pre determined spawnpoints in my game that I have stored into CGPoints ivars CGPoint spawnPos1 = ccp(50, 50); CGPoint spawnPos2 = ccp(150, 150); CGPoint spawnPos3 = ccp(250, 250); What ...
0
votes
1answer
202 views

ios - Get coordinates or CGPoint of a UIBarButtonItem

I need to get the CGPoint of a UIBarButtonItem. I know I can get them of a normal UIButton by doing this: - (IBAction)buttonTapped:(UIButton *)sender { CGPoint coordinates = ...
0
votes
1answer
85 views

CGPoint: Determining & scrolling to bottom edge of UIView on viewDidLoad

I'm trying to make an app load already scrolled to the bottom of a UIView that I've got setup. I did some research and found the setContentOffset:animated: method to get the point that I want. But as ...
1
vote
1answer
78 views

Effect of fractional CGPoint with Core Graphics?

I'm doing some drawing relative to a scaled image so I end up with fractional CGPoints. I am scaling the results from the CoreImage face detection routine. Do I want to round these myself or leave it ...
3
votes
1answer
111 views

Get the distance between two CGPoints in a UIImageView nested in a UIScrollView

CGRect screenSize = [[UIScreen mainScreen]bounds]; CGFloat screenWidth = screenSize.size.width; CGRect visibleRect; visibleRect.origin = scrollView.contentOffset; visibleRect.size = ...
0
votes
3answers
37 views

Logically Layout Multiple Items into a View by their X and Y coordinates

I have a UIView and I want to add a series of programmatically generated UIButtons to it. I've created a method that places each button (of standard size) via a CGPoint. I want to lay these buttons ...
0
votes
2answers
118 views

NSPredicate on an NSArray of CGPoints

I have an NSArray of CGPoints. I actually want to get the minimal CGRect that contains all the CGPoints in that array. Is there already any iOS function to do this? Otherwise I will have to manually ...
2
votes
2answers
103 views

How come CGFloat is making up significant digits? [duplicate]

Possible Duplicate: CGFloat addition bug? I have a CGPoint (which is just a struct around two CGFloats). Can someone explain to me how these two lines of code: player.position = ...
1
vote
1answer
765 views

Autolayout breaks UIView Animation

Struggling to make my app work on both the iPhone 5 and the smaller iPhone's prior. Would be happy to require iOS6 and use Autolayout because that works great. However, the app has 4 buttons that ...
2
votes
1answer
116 views

how to give a CGPoint line unique colors Xcode

A very simple XCode iPhone app. Blank screen, draw lines, each line is to have a unique colour given via a random number gen. I have the code to give me random colours, but I cannot get the lines to ...
0
votes
1answer
145 views

Apply CATransform3D to CGPoint, CGSize or CGRect

It should be possible to do this by only using the CATransform3D struct and a CGPoint, right? It is possible with a CGAffineTransform using the function CGPointApplyAffineTransform(CGPoint point, ...
0
votes
1answer
53 views

Animation with CGPoint in for loop

I'm trying to do an animation where when a person clicks from point A to Point B on screen the object should slowly slide straight across (horizontally) from point A to Point B. I'm new at ...
0
votes
1answer
54 views

Helping with Looping, Storing & Using CGPoints

I have some UIButtons that get moved around to different locations, predetermined by an array called totalSmallButtonLocations. So I go through availableLocations, an NSMutableArray, assigning ...
0
votes
1answer
78 views

How to make a particular point in a path drag-able via gesture. iPhone

I can draw a path and make the view drag-able via gesture recognizer. How would I make a point on the path drag-able. I suppose I would need to identify that point to check it's location in the view ...
0
votes
2answers
347 views

How to cast object of class id to CGPoint for NSMutableArray?

If I have an object myObject of class id, how would I "cast" it as a CGPoint (given that I have performed introspection and know myObject to a CGPoint)? This is despite the fact that CGPoint is not a ...
0
votes
0answers
124 views

Center custom formsheet modal view controller after closing another modal view controller

in my app I open a custom formsheet view controller: self.deal = [[Ordine_deal_elenco alloc] initWithNibName:@"Ordine_deal_elenco" bundle:[NSBundle mainBundle] Ordine_testata:self.ordineTestata ...
2
votes
1answer
358 views

Drawing a triangle

Im trying to allow users to draw a triangle shape. I'm getting the start point and the end point and using the formula to find the third point of a equilateral triangle to create the triangle but it ...
0
votes
1answer
168 views

Is there any way to know which collection view cell is at a specific point?

I have a CGPoint and I would like to know which cell from my collection view currently contains that point. Is there any simple way to do this or do I have to write my own method?
0
votes
1answer
60 views

IOS: difference touches in view

I have this code, where location and previousLocation are two CGPoint: CGRect bounds = [self bounds]; UITouch *touch = [[event touchesForView:self] anyObject]; CGPoint point = [touch ...
0
votes
0answers
48 views

Chained Movement-Animation

i´m working on a small game where i need to move my hero according to an array of waypoints. i tried this: NSArray *myCGPointArray = [[NSArray alloc] initWithObjects: ...
0
votes
0answers
110 views

CGPointMake Issue for iPhone

I have 2 buttons, and I want them to fall down the screen, and when they hit the specified Y axis (411), they become hidden and are set to NULL, and then the HP label is deducted -1 point. But when I ...
1
vote
1answer
87 views

calculate angle with three CGpoint

I have three CGpoint and I would like calculate the angle. I drawn a little schema : I tried with this code : CGPoint u ; u.x = 0; u.y = - middleRectY; CGPoint v ; ...
1
vote
1answer
71 views

Tracing the exact location of the longpressgesture with CGPoint

By using CGPoint location it is always saving the last image in uiscrollview. When i m tapping on other image to save. What can i do to save the exact image one i tapped. UIScrollView ...
1
vote
0answers
64 views

UIScrollView random point

im making a game and want it so that a picture spawns randomly every second somewhere on a scrollview. the scroll view size is 320x960, and i have it so that the picture get it's point using ...
0
votes
1answer
192 views

iOS -Setting ScrollView Current Page

I am working on a project in which I need a scrollview to show a number of images and I allow user to set a definite picture from scrollview as a favorite one and save favorites in tableview In order ...
-2
votes
1answer
65 views

I need to check the X & Y points of a CGPoint for an image, then show an alert [closed]

I'm making a game where images fall from the top of the screen, and I need to detect when they reach/go past a certain x & y value. I tried doing: if (asteroid.center.y == 296 && ...
0
votes
2answers
70 views

Cocoa iOS Make CGPoints “Bigger” in UIView

Is it possible to make the default CGPoint size for an iOS app "bigger"? For example, the iPhone's main view is 320 points wide - is it possible to change that to, say, 100 points, and base all ...
1
vote
1answer
69 views

CGPoint wrong assignment

My code: CGFloat scaleFactor = newSize.width / oldSize.width; CGFloat newCenterX = center_.x * scaleFactor; CGFloat newCenterY = center_.y * scaleFactor; CGPoint newCenter = CGPointMake(newCenterX, ...
1
vote
2answers
280 views

How to Create a Dynamic CGPoint** array

I have a few maps (tilemaps made with Tiled QT) and I would like to create a CGpoint **array based on the objects groups of those maps (I call them Waypoints). Each maps can have a few set of ...
1
vote
1answer
161 views

Can't withdraw CGPoint Values from A mutableArray of NSValue

I made an NSMUtableArray of CGpoints and I stored them by subclassing as NSValue, but I cant get the values out. here I what I did. CGPoint graphPoint; NSMutableArray *pointValues = ...

1 2 3 4