Merge pull request #33 from rlester/master

Issue When Applying Notice View To View That Has Been Transformed.
This commit is contained in:
Tito Ciuro
2013-01-08 03:23:17 -08:00
3 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@
- (void)show
{
// Obtain the screen width
CGFloat viewWidth = self.view.frame.size.width;
CGFloat viewWidth = self.view.bounds.size.width;
// Locate the images
NSString *path = [[[NSBundle mainBundle]resourcePath]stringByAppendingPathComponent:@"NoticeView.bundle"];

View File

@@ -24,7 +24,7 @@
- (void)show
{
// Obtain the screen width
CGFloat viewWidth = self.view.frame.size.width;
CGFloat viewWidth = self.view.bounds.size.width;
// Locate the images
NSString *path = [[[NSBundle mainBundle]resourcePath]stringByAppendingPathComponent:@"NoticeView.bundle"];

View File

@@ -24,7 +24,7 @@
- (void)show
{
// Obtain the screen width
CGFloat viewWidth = self.view.frame.size.width;
CGFloat viewWidth = self.view.bounds.size.width;
// Locate the images
NSString *path = [[[NSBundle mainBundle]resourcePath]stringByAppendingPathComponent:@"NoticeView.bundle"];