cgrectmake

    -2熱度

    2回答

    //Test code to print all coordinates CGRect b=CGRectMake(0, 0, 4, 3); //top left float topLX=CGRectGetMinX(b); float topLY=CGRectGetMinY(b); NSLog(@"(%f,%f)",topLX,topLY); //top right float

    0熱度

    1回答

    我有一個NavigationControllers A和一個UIViewController B。 A有一個標籤,下面是UITableView。當從A導航到B並從B導航回A時,我的標籤和表格視圖被重新構建。我曾嘗試通過ViewWillAppear方法中的代碼設置框架。然而我沒有確切的框架。我在這裏錯過的基本東西是什麼? [self.labelUser setFrame:CGRectMake(71,

    0熱度

    1回答

    我遇到了一個奇怪的問題,其中我用於CGRectMake函數的座標似乎不正確。例如: CGRect screenR = [[UIScreen mainScreen]bounds]; sWidth = screenR.size.width; sHeight = screenR.size.height; button.frame = CGRectMake(sWidth-50, sHeight-50

    0熱度

    1回答

    iOS的訂貨行爲在viewDidLoad,我有一個初始設置這樣的 - // Output all the appropriate text to UITextLabel depending on the state of the app [self presentData]; // Button sizing UIelement.frame=CGRectMake(blah blah bla

    0熱度

    2回答

    UIImage *image = (UIImage *) [info valueForKey:UIImagePickerControllerOriginalImage]; NSLog(@"%f %f %f %f ", (image.size.width/9), (image.size.height/16), (568/image.size.height), (round((568/image.s

    0熱度

    1回答

    我做了一個矩形與此代碼和它的工作原理: - (void)drawRect:(CGRect)rect{ CGContextRef context = UIGraphicsGetCurrentContext(); CGContextAddRect(context, CGRectMake(60, 60, 100, 1)); CGContextStrokePath(conte

    0熱度

    1回答

    我有一個視圖,其子視圖的框架需要根據用戶操作進行動態更改。當視圖被加載,我初始化其子視圖這樣的: if (self.firstSubview == nil) { NSArray* views = [[NSBundle mainBundle] loadNibNamed:@"FirstSubView" owner:self options:nil]; for (UIView *vi

    0熱度

    1回答

    我想繪製一個簡單的矩形形狀的標籤,但是當我運行我的代碼時,應用程序總是繪製一個正方形?這是我的代碼。 UILabel *box =[[UILabel alloc] initWithFrame:CGRectMake(0,100,100,20)]; box.backgroundColor = [UIColor redColor]; [self.view addSubview:box]; 任何人

    1熱度

    3回答

    我想從CGRectMake功能發起的UITableView一個實例,但是當我試圖使用常量來啓動它,而不是直接分配新Int,如: UITableView(frame: CGRectMake(20, HEIGHT_OF_STATUS_AND_NAVIGATION_BAR + 120, tableWidth, tableHeight) ,然後我得到一個錯誤:Int is not convertibl

    -2熱度

    3回答

    我正在製作一個非常簡單的應用程序,它有一個UIButton和一個UIImageView。每次用戶點擊按鈕的圖像寬度增加5.我的問題是,我怎樣才能限制圖像的寬度?可以說,如果它達到90則防止圖像增加其寬度。我需要在我的代碼中實現什麼? 這裏是我的代碼: File.h @interface ViewController : UIViewController { IBOutlet UIBut