簡體   English   中英

在iOS中增加UIPageControl大小

[英]Increasing the UIPageControl Size in iOS

嗨,我想增加iOS上的UIPAgeControl的大小...在Google上,我已經找到此http://www.onidev.com/2009/12/customisable-uipagecontrol/

想知道還有沒有其他方法...?

我使用以下代碼:

來源: http//apptech.next-munich.com/2010/04/customizing-uipagecontrols-looks.html

// header
@interface StyledPageControl : UIPageControl { }

@end

// implementation
@implementation StyledPageControl

- (void) setCurrentPage:(NSInteger)page {
 [super setCurrentPage:page];

 NSString* imgActive = [[NSBundle mainBundle] pathForResource:IMG_PAGE_ACTIVE ofType:nil];
 NSString* imgInactive = [[NSBundle mainBundle] pathForResource:IMG_PAGE_INACTIVE ofType:nil];
 for (NSUInteger subviewIndex = 0; subviewIndex < [self.subviews count]; subviewIndex++) {
  UIImageView* subview = [self.subviews objectAtIndex:subviewIndex];
  if (subviewIndex == page) [subview setImage:[UIImage imageWithContentsOfFile:imgActive]];
  else [subview setImage:[UIImage imageWithContentsOfFile:imgInactive]];
 }
}

- (void) setNumberOfPages:(NSInteger)pages {
 [super setNumberOfPages:pages];

 NSString* img = [[NSBundle mainBundle] pathForResource:IMG_PAGE_INACTIVE ofType:nil];
 for (NSUInteger subviewIndex = 0; subviewIndex < [self.subviews count]; subviewIndex++) {
  UIImageView* subview = [self.subviews objectAtIndex:subviewIndex];
  [subview setImage:[UIImage imageWithContentsOfFile:img]];
 }
}

@end

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM